diff options
Diffstat (limited to 'mobile/android/base/resources/anim/overlay_pop.xml')
-rw-r--r-- | mobile/android/base/resources/anim/overlay_pop.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mobile/android/base/resources/anim/overlay_pop.xml b/mobile/android/base/resources/anim/overlay_pop.xml new file mode 100644 index 000000000..6b5c412dc --- /dev/null +++ b/mobile/android/base/resources/anim/overlay_pop.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<set xmlns:android="http://schemas.android.com/apk/res/android" + android:fillAfter="true" > + + <scale + android:duration="300" + android:fromXScale="1" + android:fromYScale="1" + android:pivotX="50%" + android:pivotY="50%" + android:toXScale="2" + android:toYScale="2" > + </scale> + + <scale + android:duration="300" + android:fromXScale="1" + android:fromYScale="1" + android:pivotX="50%" + android:pivotY="50%" + android:toXScale="0.5" + android:toYScale="0.5" > + </scale> + +</set> |