summaryrefslogtreecommitdiff
path: root/app/src/main/res/anim/fade_out.xml
blob: ddf12d13f47ea4f75cd207c22df9814c8fc0db91 (plain)
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

    <alpha
        android:duration="500"
        android:fromAlpha="1.0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toAlpha="0.0" />

</set>