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

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