summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/anim/pop_exit.xml
blob: 1154aa610f6f90206be91eb716ed306174e5938c (plain)
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="150"
    android:interpolator="@android:anim/linear_interpolator">
    <alpha
        android:fromAlpha="1.0"
        android:toAlpha="0.0" />
    <translate
        android:fromXDelta="0"
        android:toXDelta="25%" />
</set>