diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2012-02-21 14:15:27 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2012-02-21 17:38:23 +0100 |
commit | 84e4170aff12e0e6dbaec1b0ae5a98372a0d091c (patch) | |
tree | 1fd7bcec52b64511e425203957459fa1c2a3c160 /android/res | |
parent | 39d96445ce65da3fb36ee5af3e99fab143af476f (diff) | |
download | mupdf-84e4170aff12e0e6dbaec1b0ae5a98372a0d091c.tar.xz |
Use a fixed duration of 400ms for scroll animation.
Make fade in/out animations 200ms long, the same as the default animation
duration for iOS UI animations.
Diffstat (limited to 'android/res')
-rw-r--r-- | android/res/anim/fade_in.xml | 2 | ||||
-rw-r--r-- | android/res/anim/fade_out.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/android/res/anim/fade_in.xml b/android/res/anim/fade_in.xml index 65bf6edd..b2af62ca 100644 --- a/android/res/anim/fade_in.xml +++ b/android/res/anim/fade_in.xml @@ -2,4 +2,4 @@ <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:fromAlpha="0.0" android:toAlpha="1.0" - android:duration="100" /> + android:duration="200" /> diff --git a/android/res/anim/fade_out.xml b/android/res/anim/fade_out.xml index efde8c13..7d742df3 100644 --- a/android/res/anim/fade_out.xml +++ b/android/res/anim/fade_out.xml @@ -2,4 +2,4 @@ <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:fromAlpha="1.0" android:toAlpha="0.0" - android:duration="100" /> + android:duration="200" /> |