diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2024-03-23 09:40:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 09:40:40 +0100 |
commit | f20ce1fc690788273bb779663a4f3211f47a0973 (patch) | |
tree | a1192a00bc1b5153d143fa579b8c6f977111c847 /ui/common/src/main/res/anim/slide_left_out.xml | |
parent | 376c83d200859ef562d6e3de02602ef18de3e7de (diff) | |
download | AntennaPod-f20ce1fc690788273bb779663a4f3211f47a0973.zip |
Move first batch of preferences code to :ui:preferences (#7010)
Diffstat (limited to 'ui/common/src/main/res/anim/slide_left_out.xml')
-rw-r--r-- | ui/common/src/main/res/anim/slide_left_out.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/common/src/main/res/anim/slide_left_out.xml b/ui/common/src/main/res/anim/slide_left_out.xml new file mode 100644 index 000000000..873947de4 --- /dev/null +++ b/ui/common/src/main/res/anim/slide_left_out.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:shareInterpolator="false"> + <translate + android:fromXDelta="0%" android:toXDelta="-100%" + android:fromYDelta="0%" android:toYDelta="0%" + android:duration="@integer/fragment_transition_duration" + android:interpolator="@android:anim/accelerate_decelerate_interpolator" /> +</set> |