mirror of
https://github.com/gsantner/dandelion
synced 2024-11-22 04:12:08 +01:00
Added animations
This commit is contained in:
parent
e48edbf652
commit
f7f72a404b
2 changed files with 12 additions and 0 deletions
6
app/src/main/res/anim/bottom_bar_down.xml
Normal file
6
app/src/main/res/anim/bottom_bar_down.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<translate android:fromYDelta="0%p" android:toYDelta="100%p" android:fillAfter="true"
|
||||||
|
android:interpolator="@android:anim/linear_interpolator"
|
||||||
|
android:duration="500" />
|
||||||
|
</set>
|
6
app/src/main/res/anim/bottom_bar_up.xml
Normal file
6
app/src/main/res/anim/bottom_bar_up.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<translate android:fromYDelta="75%p" android:toYDelta="0%p"
|
||||||
|
android:fillAfter="true"
|
||||||
|
android:duration="500"/>
|
||||||
|
</set>
|
Loading…
Reference in a new issue