androidx版本首次提交
This commit is contained in:
10
common/src/main/res/anim/bottomview_anim_enter.xml
Normal file
10
common/src/main/res/anim/bottomview_anim_enter.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
common/src/main/res/anim/bottomview_anim_enter_2.xml
Normal file
10
common/src/main/res/anim/bottomview_anim_enter_2.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
common/src/main/res/anim/bottomview_anim_exit.xml
Normal file
10
common/src/main/res/anim/bottomview_anim_exit.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p"
|
||||
/>
|
||||
|
||||
</set>
|
||||
10
common/src/main/res/anim/bottomview_anim_exit_2.xml
Normal file
10
common/src/main/res/anim/bottomview_anim_exit_2.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p"
|
||||
/>
|
||||
|
||||
</set>
|
||||
11
common/src/main/res/anim/left_anim_enter.xml
Normal file
11
common/src/main/res/anim/left_anim_enter.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
>
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="100%p"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toXDelta="0"
|
||||
/>
|
||||
</set>
|
||||
10
common/src/main/res/anim/left_anim_exit.xml
Normal file
10
common/src/main/res/anim/left_anim_exit.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toXDelta="100%p"
|
||||
/>
|
||||
</set>
|
||||
Reference in New Issue
Block a user