mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-18 09:15:10 +00:00
26 lines
813 B
XML
26 lines
813 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:ordering="together">
|
||
|
|
||
|
<objectAnimator
|
||
|
android:duration="@android:integer/config_shortAnimTime"
|
||
|
android:propertyName="scaleX"
|
||
|
android:valueFrom="1"
|
||
|
android:valueTo="1.1"
|
||
|
android:valueType="floatType"/>
|
||
|
|
||
|
<objectAnimator
|
||
|
android:duration="@android:integer/config_shortAnimTime"
|
||
|
android:propertyName="scaleY"
|
||
|
android:valueFrom="1"
|
||
|
android:valueTo="1.1"
|
||
|
android:valueType="floatType"/>
|
||
|
|
||
|
<objectAnimator
|
||
|
android:duration="@android:integer/config_shortAnimTime"
|
||
|
android:propertyName="alpha"
|
||
|
android:valueFrom="1"
|
||
|
android:valueTo="0"
|
||
|
android:valueType="floatType" />
|
||
|
|
||
|
</set>
|