res: add fade_in and fade_out animations for dog park entry
This commit is contained in:
parent
3ab50ec900
commit
1e43638fbc
6
app/src/main/res/anim/fade_in.xml
Normal file
6
app/src/main/res/anim/fade_in.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="400"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in"
|
||||
android:toAlpha="1.0" />
|
||||
6
app/src/main/res/anim/fade_out.xml
Normal file
6
app/src/main/res/anim/fade_out.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromAlpha="1.0"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in"
|
||||
android:toAlpha="0.0" />
|
||||
Loading…
x
Reference in New Issue
Block a user