diff options
author | Ben Komalo <benkomalo@google.com> | 2011-09-01 10:30:13 -0700 |
---|---|---|
committer | Ben Komalo <benkomalo@google.com> | 2011-09-01 10:42:45 -0700 |
commit | 9cec1becd600273254b319cc311e43fe31794d06 (patch) | |
tree | af997a9d964be10028d9ae0eb8957ffaea3817b2 /res/layout | |
parent | 24e073071df2b61afb6ba8b31206bef71cc22b91 (diff) | |
download | packages_apps_settings-9cec1becd600273254b319cc311e43fe31794d06.zip packages_apps_settings-9cec1becd600273254b319cc311e43fe31794d06.tar.gz packages_apps_settings-9cec1becd600273254b319cc311e43fe31794d06.tar.bz2 |
Misc UI fixes for settings (mostly cryptkeeper)
- fix padding issues in a lot of cryptkeeper screens
- fix sizing of clock that didn't fit anymore with the new font
- change titles from green to the new holo blue
Bug: 5247866
Change-Id: Ib934e9661c32cce26e1af40eaff133bae11f78dc
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/crypt_keeper_progress.xml | 2 | ||||
-rw-r--r-- | res/layout/crypt_keeper_status.xml | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/res/layout/crypt_keeper_progress.xml b/res/layout/crypt_keeper_progress.xml index 9677c3d..35760cf 100644 --- a/res/layout/crypt_keeper_progress.xml +++ b/res/layout/crypt_keeper_progress.xml @@ -30,7 +30,7 @@ android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:textSize="30dip" - android:textColor="#ff99cc00" + android:textColor="@color/title_color" android:text="@string/crypt_keeper_setup_title" android:gravity="bottom" /> diff --git a/res/layout/crypt_keeper_status.xml b/res/layout/crypt_keeper_status.xml index 59d2365..b9c8288 100644 --- a/res/layout/crypt_keeper_status.xml +++ b/res/layout/crypt_keeper_status.xml @@ -19,10 +19,10 @@ <!-- Status to show on the left side of lock screen --> <LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" + xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="wrap_content" + android:layout_height="wrap_content" > <com.android.internal.widget.DigitalClock android:id="@+id/time" @@ -41,7 +41,7 @@ android:layout_height="wrap_content" android:singleLine="true" android:ellipsize="none" - android:textSize="120sp" + android:textSize="@dimen/crypt_clock_size" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="@color/crypt_keeper_clock_background" android:layout_marginBottom="6dip" @@ -52,7 +52,7 @@ android:layout_height="wrap_content" android:singleLine="true" android:ellipsize="none" - android:textSize="120sp" + android:textSize="@dimen/crypt_clock_size" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="@color/crypt_keeper_clock_foreground" android:layout_alignLeft="@*android:id/timeDisplayBackground" |