diff options
| author | 2010-01-28 14:57:03 -0800 | |
|---|---|---|
| committer | 2010-01-28 14:57:03 -0800 | |
| commit | 2e9dea1dbe22410c6ad42785405abb7e7334d854 (patch) | |
| tree | c2c8e90a3dc6da36cbeec241a25919a483c1f1a7 | |
| parent | fbf56dc719a2ee13129fd7049565054370c6ed1d (diff) | |
| parent | fbf977be5471a81b664bfc0a048497f268688a17 (diff) | |
am fbf977be: am 9985867a: Fix 2397617: Right-align carrier text in lock screen and add carrier text to PINunlock in landscape mode.
Merge commit 'fbf977be5471a81b664bfc0a048497f268688a17'
* commit 'fbf977be5471a81b664bfc0a048497f268688a17':
Fix 2397617: Right-align carrier text in lock screen and add carrier text to PINunlock in landscape mode.
5 files changed, 26 insertions, 10 deletions
diff --git a/core/res/res/layout/keyguard_screen_sim_pin_landscape.xml b/core/res/res/layout/keyguard_screen_sim_pin_landscape.xml index 2fa7aaafd145..244afbe0ebd8 100644 --- a/core/res/res/layout/keyguard_screen_sim_pin_landscape.xml +++ b/core/res/res/layout/keyguard_screen_sim_pin_landscape.xml @@ -23,6 +23,28 @@ android:background="@android:color/background_dark" > + <!-- header text ('Enter Pin Code') --> + <TextView android:id="@+id/headerText" + android:layout_above="@+id/carrier" + android:layout_centerHorizontal="true" + android:layout_marginBottom="30dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="24sp" + /> + + <!-- Carrier info --> + <TextView android:id="@+id/carrier" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_above="@+id/pinDisplayGroup" + android:layout_marginTop="9dip" + android:gravity="left|bottom" + android:singleLine="true" + android:ellipsize="marquee" + android:textAppearance="?android:attr/textAppearanceMedium" + /> + <!-- displays dots as user enters pin --> <LinearLayout android:id="@+id/pinDisplayGroup" android:orientation="horizontal" @@ -60,16 +82,6 @@ </LinearLayout> - <!-- header text ('Enter Pin Code') --> - <TextView android:id="@+id/headerText" - android:layout_above="@id/pinDisplayGroup" - android:layout_centerHorizontal="true" - android:layout_marginBottom="30dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="24sp" - /> - <LinearLayout android:orientation="horizontal" android:layout_alignParentBottom="true" diff --git a/core/res/res/layout/keyguard_screen_tab_unlock.xml b/core/res/res/layout/keyguard_screen_tab_unlock.xml index fd34f7bb216c..b40495546e31 100644 --- a/core/res/res/layout/keyguard_screen_tab_unlock.xml +++ b/core/res/res/layout/keyguard_screen_tab_unlock.xml @@ -39,6 +39,7 @@ android:layout_marginRight="8dip" android:singleLine="true" android:ellipsize="marquee" + android:gravity="right|bottom" android:textAppearance="?android:attr/textAppearanceMedium" /> diff --git a/core/res/res/layout/keyguard_screen_tab_unlock_land.xml b/core/res/res/layout/keyguard_screen_tab_unlock_land.xml index 617b73894b9a..6ee659cb1b75 100644 --- a/core/res/res/layout/keyguard_screen_tab_unlock_land.xml +++ b/core/res/res/layout/keyguard_screen_tab_unlock_land.xml @@ -44,6 +44,7 @@ android:layout_marginTop="20dip" android:singleLine="true" android:ellipsize="marquee" + android:gravity="right|bottom" android:textAppearance="?android:attr/textAppearanceMedium" /> diff --git a/core/res/res/layout/keyguard_screen_unlock_landscape.xml b/core/res/res/layout/keyguard_screen_unlock_landscape.xml index efd2044f3b41..c1b406fa7bfd 100644 --- a/core/res/res/layout/keyguard_screen_unlock_landscape.xml +++ b/core/res/res/layout/keyguard_screen_unlock_landscape.xml @@ -56,6 +56,7 @@ android:layout_marginTop="32dip" android:singleLine="true" android:ellipsize="marquee" + android:gravity="right|bottom" /> <com.android.internal.widget.DigitalClock android:id="@+id/time" android:layout_width="wrap_content" diff --git a/core/res/res/layout/keyguard_screen_unlock_portrait.xml b/core/res/res/layout/keyguard_screen_unlock_portrait.xml index eb150f5ddbd1..16cd48c1ee42 100644 --- a/core/res/res/layout/keyguard_screen_unlock_portrait.xml +++ b/core/res/res/layout/keyguard_screen_unlock_portrait.xml @@ -44,6 +44,7 @@ android:layout_toRightOf="@+id/time" android:singleLine="true" android:ellipsize="marquee" + android:gravity="right|bottom" android:textAppearance="?android:attr/textAppearanceMedium" /> |