diff options
author | Selim Cinek <cinek@google.com> | 2014-06-20 16:37:04 -0700 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2014-06-30 18:48:41 +0000 |
commit | 4e8b9ed30b67e5449d987e674b2966dc7f3ac224 (patch) | |
tree | 7294d84b5c57aca74731b95b6888095bdd55845f /packages/Keyguard/res/values/dimens.xml | |
parent | 5f834774c77b290e951c712608d1dde2251cd0a5 (diff) | |
download | frameworks_base-4e8b9ed30b67e5449d987e674b2966dc7f3ac224.zip frameworks_base-4e8b9ed30b67e5449d987e674b2966dc7f3ac224.tar.gz frameworks_base-4e8b9ed30b67e5449d987e674b2966dc7f3ac224.tar.bz2 |
Implemented new PIN unlock design
The pin unlock design was changed according to the spec
and new animations where introduced for the password field.
Bug: 13735707
Change-Id: I76f5e873bd0ea4f34ca3d2cd971223f0a83e2f28
Diffstat (limited to 'packages/Keyguard/res/values/dimens.xml')
-rw-r--r-- | packages/Keyguard/res/values/dimens.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/Keyguard/res/values/dimens.xml b/packages/Keyguard/res/values/dimens.xml index 4b113ff..375cf32 100644 --- a/packages/Keyguard/res/values/dimens.xml +++ b/packages/Keyguard/res/values/dimens.xml @@ -119,6 +119,9 @@ <!-- Height of the sliding KeyguardSecurityContainer (includes 2x keyguard_security_view_margin) --> <dimen name="keyguard_security_height">400dp</dimen> + <!-- Max Height of the sliding KeyguardSecurityContainer (includes 2x keyguard_security_view_margin) --> + <dimen name="keyguard_security_max_height">460dp</dimen> + <!-- Margin around the various security views --> <dimen name="keyguard_security_view_margin">8dp</dimen> @@ -164,6 +167,12 @@ <!-- The y translation to apply at the start in appear animations. --> <dimen name="appear_y_translation_start">32dp</dimen> + <!-- The size of the dots in the PIN unlock method. --> + <dimen name="password_dot_size">9dp</dimen> + + <!-- The padding between chars of the password view. --> + <dimen name="password_char_padding">8dp</dimen> + <!-- The vertical margin between the date and the owner info. --> <dimen name="date_owner_info_margin">10dp</dimen> </resources> |