summaryrefslogtreecommitdiffstats
path: root/core/res
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-10-08 18:34:57 -0700
committerDianne Hackborn <hackbod@google.com>2009-10-08 18:34:57 -0700
commit89becd79da643421adc2dbb0cdccc547a0611abb (patch)
tree7dba72ddafa3ab1c933df237afa6529ee39b1b1d /core/res
parent9e2562b8f97fec7e13e6302678459e99b8cccb2a (diff)
downloadframeworks_base-89becd79da643421adc2dbb0cdccc547a0611abb.zip
frameworks_base-89becd79da643421adc2dbb0cdccc547a0611abb.tar.gz
frameworks_base-89becd79da643421adc2dbb0cdccc547a0611abb.tar.bz2
Fix issue #2177262: Improve animations
Slower is better. Change-Id: Id609f253e43814b4c7689ed9b076ef75f4e345a6
Diffstat (limited to 'core/res')
-rw-r--r--core/res/res/anim/lock_screen_behind_enter.xml2
-rw-r--r--core/res/res/anim/lock_screen_exit.xml2
-rw-r--r--core/res/res/values/config.xml4
3 files changed, 4 insertions, 4 deletions
diff --git a/core/res/res/anim/lock_screen_behind_enter.xml b/core/res/res/anim/lock_screen_behind_enter.xml
index 9e03e15..b243223 100644
--- a/core/res/res/anim/lock_screen_behind_enter.xml
+++ b/core/res/res/anim/lock_screen_behind_enter.xml
@@ -19,5 +19,5 @@
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@anim/accelerate_interpolator">
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
- android:duration="@android:integer/config_mediumAnimTime" />
+ android:duration="@android:integer/config_longAnimTime" />
</set>
diff --git a/core/res/res/anim/lock_screen_exit.xml b/core/res/res/anim/lock_screen_exit.xml
index 0d32921..58bc6db 100644
--- a/core/res/res/anim/lock_screen_exit.xml
+++ b/core/res/res/anim/lock_screen_exit.xml
@@ -19,5 +19,5 @@
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@anim/accelerate_interpolator">
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
- android:duration="@android:integer/config_mediumAnimTime" />
+ android:duration="@android:integer/config_longAnimTime" />
</set>
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index 6fd7657..c87a11c 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -35,10 +35,10 @@
<integer name="config_shortAnimTime">150</integer>
<!-- The duration (in milliseconds) of a medium-length animation. -->
- <integer name="config_mediumAnimTime">200</integer>
+ <integer name="config_mediumAnimTime">300</integer>
<!-- The duration (in milliseconds) of a long animation. -->
- <integer name="config_longAnimTime">350</integer>
+ <integer name="config_longAnimTime">400</integer>
<!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
Please don't copy them, copy anything else. -->