summaryrefslogtreecommitdiff
path: root/app/src/main/res/anim/fade_out.xml
blob: ecfb092ae2d0a48edffeaf0e9796e57224b55bfa (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="@integer/fragment_transition_duration"
        android:fromAlpha="1.0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toAlpha="0.0" />

</set>