Donations improvements
This commit is contained in:
13
mastodon/src/main/res/anim/fragment_enter.xml
Normal file
13
mastodon/src/main/res/anim/fragment_enter.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:interpolator="@interpolator/cubic_bezier_default"
|
||||
android:shareInterpolator="true"
|
||||
>
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1" />
|
||||
<translate
|
||||
android:fromXDelta="@integer/hundred_dp"
|
||||
android:toXDelta="0"/>
|
||||
</set>
|
||||
13
mastodon/src/main/res/anim/fragment_exit.xml
Normal file
13
mastodon/src/main/res/anim/fragment_exit.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="200"
|
||||
android:interpolator="@interpolator/cubic_bezier_default"
|
||||
android:shareInterpolator="true"
|
||||
>
|
||||
<alpha
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0" />
|
||||
<translate
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="@integer/hundred_dp"/>
|
||||
</set>
|
||||
4
mastodon/src/main/res/anim/no_op_300ms.xml
Normal file
4
mastodon/src/main/res/anim/no_op_300ms.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:duration="300">
|
||||
|
||||
</set>
|
||||
Reference in New Issue
Block a user