aboutsummaryrefslogtreecommitdiffstats
path: root/res/anim
diff options
context:
space:
mode:
authorJorge Ruesga <jorge@ruesga.com>2013-08-04 03:31:13 +0200
committerJorge Ruesga <jorge@ruesga.com>2013-08-04 03:31:13 +0200
commit9a4d4f244d9e2d24295bf89c2bbb01610aa33899 (patch)
tree414a960db501ce996fdbbfa5adfdd0b609009d8b /res/anim
parent434604db80a43302c96cca812928234528518117 (diff)
downloadandroid_packages_wallpapers_PhotoPhase-9a4d4f244d9e2d24295bf89c2bbb01610aa33899.tar.gz
android_packages_wallpapers_PhotoPhase-9a4d4f244d9e2d24295bf89c2bbb01610aa33899.tar.bz2
android_packages_wallpapers_PhotoPhase-9a4d4f244d9e2d24295bf89c2bbb01610aa33899.zip
Disposition Preference Layout (#1)
Signed-off-by: Jorge Ruesga <jorge@ruesga.com>
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/display_with_bounce.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/res/anim/display_with_bounce.xml b/res/anim/display_with_bounce.xml
new file mode 100644
index 0000000..b9ea8c2
--- /dev/null
+++ b/res/anim/display_with_bounce.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/bounce_interpolator" >
+
+ <scale
+ android:duration="@integer/disposition_show_anim"
+ android:fromXScale="0.0"
+ android:fromYScale="0.0"
+ android:toXScale="1.0"
+ android:toYScale="1.0"
+ android:pivotX="50%"
+ android:pivotY="50%" />
+
+ <alpha
+ android:duration="@integer/disposition_show_anim"
+ android:fromAlpha="0.0"
+ android:toAlpha="1.0" />
+
+</set> \ No newline at end of file