diff options
author | Patrick Dubroy <dubroy@google.com> | 2010-08-23 15:08:16 -0700 |
---|---|---|
committer | Patrick Dubroy <dubroy@google.com> | 2010-08-25 17:11:08 -0700 |
commit | 6b509c1fd62a39916bb957eac07917161f549206 (patch) | |
tree | a229cd1c73d3fb6f1e2857710076c0b059b35eb5 /res/values-xlarge | |
parent | 86f7753bbd6d87ce85195b0715e5548edbfdb7d1 (diff) | |
download | packages_apps_trebuchet-6b509c1fd62a39916bb957eac07917161f549206.zip packages_apps_trebuchet-6b509c1fd62a39916bb957eac07917161f549206.tar.gz packages_apps_trebuchet-6b509c1fd62a39916bb957eac07917161f549206.tar.bz2 |
Add a market button and add toolbar button animations.
Also clean up a lot of the animation code to be more centralized.
Diffstat (limited to 'res/values-xlarge')
-rw-r--r-- | res/values-xlarge/config.xml | 20 | ||||
-rw-r--r-- | res/values-xlarge/dimens.xml | 5 |
2 files changed, 17 insertions, 8 deletions
diff --git a/res/values-xlarge/config.xml b/res/values-xlarge/config.xml index 1a9ecc6..9b1bc0d 100644 --- a/res/values-xlarge/config.xml +++ b/res/values-xlarge/config.xml @@ -1,4 +1,6 @@ <resources> + <!-- NOTE: Many of the all apps values here are also used for the customization drawer --> + <!-- Duration in milliseconds of the all apps zoom-in animation. --> <!-- NB: This should be less than the workspaceShrinkTime as they happen together. --> <integer name="config_allAppsZoomInTime">350</integer> @@ -10,12 +12,18 @@ <!-- Scaling factor used in the all apps zooming animations --> <integer name="config_allAppsZoomScaleFactor">5</integer> - <!-- Duration in milliseconds of the camera pan animation b/w all apps & customize --> - <integer name="config_allAppsCameraPanTime">700</integer> + <!-- The extra distance off-screen that all apps appears from --> + <integer name="config_allAppsVerticalOffset">200</integer> - <!-- Duration in milliseconds of the workspace shrink animation --> + <!-- Duration in milliseconds of the animations between all apps, customize, & home. + NOTE: If these are changed, the toolbar animation times below should also be. --> + <integer name="config_allAppsCameraPanTime">700</integer> <integer name="config_workspaceShrinkTime">700</integer> - - <!-- Duration in milliseconds of the workspace unshrink animation --> <integer name="config_workspaceUnshrinkTime">700</integer> -</resources>
\ No newline at end of file + + <!-- Duration in milliseconds toolbar fade in and fade out animations. + NOTE: Fade in and fade out time should together be less the transition + animations between all apps, customize, & the workspace. --> + <integer name="config_toolbarButtonFadeInTime">350</integer> + <integer name="config_toolbarButtonFadeOutTime">350</integer> +</resources> diff --git a/res/values-xlarge/dimens.xml b/res/values-xlarge/dimens.xml index c9bd836..1010390 100644 --- a/res/values-xlarge/dimens.xml +++ b/res/values-xlarge/dimens.xml @@ -25,6 +25,7 @@ <!-- vertical spacing between edge of screen and mini screen thumbnails --> <dimen name="smallScreenVerticalMargin">20dip</dimen> - <!-- padding above the delete zone --> - <dimen name="delete_zone_padding">6dip</dimen> + <dimen name="toolbar_padding">10dip</dimen> + + <dimen name="toolbar_button_spacing">20dip</dimen> </resources> |