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/fade_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/fade_out.xml')
-rw-r--r-- | ui/common/src/main/res/anim/fade_out.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/common/src/main/res/anim/fade_out.xml b/ui/common/src/main/res/anim/fade_out.xml new file mode 100644 index 000000000..ecfb092ae --- /dev/null +++ b/ui/common/src/main/res/anim/fade_out.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<set xmlns:android="http://schemas.android.com/apk/res/android"> + + <alpha + android:duration="@integer/fragment_transition_duration" + android:fromAlpha="1.0" + android:interpolator="@android:anim/accelerate_interpolator" + android:toAlpha="0.0" /> + +</set>
\ No newline at end of file |