forked from GitHub-Mirror/riotX-android
Import settings from Riot - not all fonctional of course
This commit is contained in:
9
vector/src/main/res/anim/anim_slide_in_bottom.xml
Normal file
9
vector/src/main/res/anim/anim_slide_in_bottom.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="20%"
|
||||
android:toYDelta="0%" />
|
||||
</set>
|
9
vector/src/main/res/anim/anim_slide_nothing.xml
Normal file
9
vector/src/main/res/anim/anim_slide_nothing.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="000%"
|
||||
android:toYDelta="000%" />
|
||||
</set>
|
14
vector/src/main/res/anim/anim_slide_out_bottom.xml
Normal file
14
vector/src/main/res/anim/anim_slide_out_bottom.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="0%"
|
||||
android:toYDelta="20%" />
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
|
||||
</set>
|
16
vector/src/main/res/anim/unread_marker_anim.xml
Normal file
16
vector/src/main/res/anim/unread_marker_anim.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="1500"
|
||||
android:fromXScale="1"
|
||||
android:fromYScale="1"
|
||||
android:pivotX="50%p"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="0"
|
||||
android:toYScale="0" />
|
||||
|
||||
<alpha
|
||||
android:duration="1500"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0" />
|
||||
</set>
|
Reference in New Issue
Block a user