Skip to content

Commit 3018997

Browse files
author
Brian Colonna
committed
Fix 6396479: Made FUL unlock layout look good on nakasi
For the portrait layouts, the size of the unlock view was reduced because it was outside the bottom bounds of the screen, making it look much wider than it was high. The fix makes it look square. For the landscape layouts, the size of the unlock view was increased because it was leaving only thin slivers of background space on the top and bottom. It now fills the entire right half of the screen. This was also tested on the Xoom to make sure it looks reasonable on 10 inch tablets, even though FUL doesn't ship on the Xoom. Change-Id: I969912a944d20560d31729806273dec47aaa6ecb
1 parent 37a8370 commit 3018997

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

core/res/res/layout-sw600dp/keyguard_screen_password_landscape.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@
156156
<RelativeLayout
157157
android:id="@+id/faceLockAreaView"
158158
android:visibility="invisible"
159-
android:layout_width="512dip"
160-
android:layout_height="512dip"
159+
android:layout_width="530dip"
160+
android:layout_height="530dip"
161161
android:layout_centerInParent="true"
162162
android:background="@drawable/intro_bg">
163163

core/res/res/layout-sw600dp/keyguard_screen_password_portrait.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@
159159
<RelativeLayout
160160
android:id="@+id/faceLockAreaView"
161161
android:visibility="invisible"
162-
android:layout_width="512dip"
163-
android:layout_height="512dip"
162+
android:layout_width="440dip"
163+
android:layout_height="440dip"
164164
android:layout_centerInParent="true"
165165
android:background="@drawable/intro_bg">
166166

core/res/res/layout-sw600dp/keyguard_screen_unlock_landscape.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@
127127
<RelativeLayout
128128
android:id="@+id/faceLockAreaView"
129129
android:visibility="invisible"
130-
android:layout_width="512dip"
131-
android:layout_height="512dip"
130+
android:layout_width="530dip"
131+
android:layout_height="530dip"
132132
android:layout_centerInParent="true"
133133
android:background="@drawable/intro_bg">
134134

core/res/res/layout-sw600dp/keyguard_screen_unlock_portrait.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
<RelativeLayout
123123
android:id="@+id/faceLockAreaView"
124124
android:visibility="invisible"
125-
android:layout_width="512dip"
126-
android:layout_height="512dip"
125+
android:layout_width="440dip"
126+
android:layout_height="440dip"
127127
android:layout_centerInParent="true"
128128
android:background="@drawable/intro_bg">
129129

0 commit comments

Comments
 (0)