summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/anim/anim_settings_fragment_in.xml
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-14 05:01:05 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:43 +0200
commit352559b83dc04d88e3efa6a6c6489467893f8600 (patch)
tree48c263b1f91858e778d9c9e2af0ded3d26904ca3 /src/android/app/src/main/res/anim/anim_settings_fragment_in.xml
parentandroid: Use edge to edge (diff)
downloadyuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar.gz
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar.bz2
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar.lz
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar.xz
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.tar.zst
yuzu-352559b83dc04d88e3efa6a6c6489467893f8600.zip
Diffstat (limited to 'src/android/app/src/main/res/anim/anim_settings_fragment_in.xml')
-rw-r--r--src/android/app/src/main/res/anim/anim_settings_fragment_in.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/anim/anim_settings_fragment_in.xml b/src/android/app/src/main/res/anim/anim_settings_fragment_in.xml
new file mode 100644
index 000000000..98e0cf8bd
--- /dev/null
+++ b/src/android/app/src/main/res/anim/anim_settings_fragment_in.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <alpha
+ android:duration="@android:integer/config_shortAnimTime"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromAlpha="0"
+ android:toAlpha="1" />
+
+ <translate
+ android:duration="@android:integer/config_shortAnimTime"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:fromXDelta="200"
+ android:toXDelta="0" />
+
+</set>