diff options
author | Brian Colonna <bcolonna@google.com> | 2012-05-03 15:09:18 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-05-03 15:09:18 -0700 |
commit | 9b4dc0f70194c2e1c24ecc146f4f0c74970cf347 (patch) | |
tree | f6926c53f45dd5fdeeda8f5e8f06c7fccd465ffc | |
parent | c292355f84a01ca96b6e8aba53110679d0eab90d (diff) | |
parent | 30189975346abdcaec992aebb3de7db986978db3 (diff) | |
download | frameworks_base-9b4dc0f70194c2e1c24ecc146f4f0c74970cf347.zip frameworks_base-9b4dc0f70194c2e1c24ecc146f4f0c74970cf347.tar.gz frameworks_base-9b4dc0f70194c2e1c24ecc146f4f0c74970cf347.tar.bz2 |
Merge "Fix 6396479: Made FUL unlock layout look good on nakasi" into jb-dev
4 files changed, 8 insertions, 8 deletions
diff --git a/core/res/res/layout-sw600dp/keyguard_screen_password_landscape.xml b/core/res/res/layout-sw600dp/keyguard_screen_password_landscape.xml index 2495b67..ff65c61 100644 --- a/core/res/res/layout-sw600dp/keyguard_screen_password_landscape.xml +++ b/core/res/res/layout-sw600dp/keyguard_screen_password_landscape.xml @@ -156,8 +156,8 @@ <RelativeLayout android:id="@+id/faceLockAreaView" android:visibility="invisible" - android:layout_width="512dip" - android:layout_height="512dip" + android:layout_width="530dip" + android:layout_height="530dip" android:layout_centerInParent="true" android:background="@drawable/intro_bg"> diff --git a/core/res/res/layout-sw600dp/keyguard_screen_password_portrait.xml b/core/res/res/layout-sw600dp/keyguard_screen_password_portrait.xml index 36d4a2a..60401c9 100644 --- a/core/res/res/layout-sw600dp/keyguard_screen_password_portrait.xml +++ b/core/res/res/layout-sw600dp/keyguard_screen_password_portrait.xml @@ -159,8 +159,8 @@ <RelativeLayout android:id="@+id/faceLockAreaView" android:visibility="invisible" - android:layout_width="512dip" - android:layout_height="512dip" + android:layout_width="440dip" + android:layout_height="440dip" android:layout_centerInParent="true" android:background="@drawable/intro_bg"> diff --git a/core/res/res/layout-sw600dp/keyguard_screen_unlock_landscape.xml b/core/res/res/layout-sw600dp/keyguard_screen_unlock_landscape.xml index 53ecbac..68499f4 100644 --- a/core/res/res/layout-sw600dp/keyguard_screen_unlock_landscape.xml +++ b/core/res/res/layout-sw600dp/keyguard_screen_unlock_landscape.xml @@ -127,8 +127,8 @@ <RelativeLayout android:id="@+id/faceLockAreaView" android:visibility="invisible" - android:layout_width="512dip" - android:layout_height="512dip" + android:layout_width="530dip" + android:layout_height="530dip" android:layout_centerInParent="true" android:background="@drawable/intro_bg"> diff --git a/core/res/res/layout-sw600dp/keyguard_screen_unlock_portrait.xml b/core/res/res/layout-sw600dp/keyguard_screen_unlock_portrait.xml index 577668f..086757d 100644 --- a/core/res/res/layout-sw600dp/keyguard_screen_unlock_portrait.xml +++ b/core/res/res/layout-sw600dp/keyguard_screen_unlock_portrait.xml @@ -122,8 +122,8 @@ <RelativeLayout android:id="@+id/faceLockAreaView" android:visibility="invisible" - android:layout_width="512dip" - android:layout_height="512dip" + android:layout_width="440dip" + android:layout_height="440dip" android:layout_centerInParent="true" android:background="@drawable/intro_bg"> |