Update extractor and refactored NewPipe
This commit is contained in:
parent
bddd9b3409
commit
146d4a8365
254 changed files with 7836 additions and 7302 deletions
9
app/src/main/res/animator/custom_fade_in.xml
Normal file
9
app/src/main/res/animator/custom_fade_in.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator
|
||||
android:duration="120"
|
||||
android:interpolator="@android:interpolator/accelerate_decelerate"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0f"
|
||||
android:valueTo="1.0f"/>
|
||||
</set>
|
||||
9
app/src/main/res/animator/custom_fade_out.xml
Normal file
9
app/src/main/res/animator/custom_fade_out.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator
|
||||
android:duration="120"
|
||||
android:interpolator="@android:interpolator/accelerate_decelerate"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0f"
|
||||
android:valueTo="0.0f"/>
|
||||
</set>
|
||||
Loading…
Add table
Add a link
Reference in a new issue