Files
fast-messenger/app/src/main/res/anim/activity_close_exit.xml
T
2021-02-18 13:55:03 +03:00

29 lines
869 B
XML

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false"
android:zAdjustment="top">
<alpha
android:duration="50"
android:fillAfter="true"
android:fillBefore="true"
android:fillEnabled="true"
android:fromAlpha="1"
android:interpolator="@android:interpolator/linear"
android:startOffset="33"
android:toAlpha="0.0" />
<scale
android:duration="400"
android:fillAfter="true"
android:fillBefore="true"
android:fillEnabled="true"
android:fromXScale="1"
android:fromYScale="1"
android:interpolator="@anim/fast_out_extra_slow_in"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="0.9"
android:toYScale="0.9" />
</set>