15 lines
404 B
XML
15 lines
404 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:interpolator="@android:anim/accelerate_decelerate_interpolator">
|
||
|
|
|
||
|
|
<translate
|
||
|
|
android:fromYDelta="-100%"
|
||
|
|
android:toYDelta="0%"
|
||
|
|
android:duration="800"/>
|
||
|
|
|
||
|
|
<alpha
|
||
|
|
android:fromAlpha="0"
|
||
|
|
android:toAlpha="1"
|
||
|
|
android:duration="800"/>
|
||
|
|
</set>
|