diff options
author | Paul Lawrence <paullawrence@google.com> | 2014-06-17 12:57:01 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-06-17 05:00:50 +0000 |
commit | f57bf32a3c1a4f12c0e2a0e955b6ac11ba0339e4 (patch) | |
tree | 03a4c421158cf0fd87c75a27fd7aafa606fe8d2d /res | |
parent | 190b6ca8f48c0807af2fd8f551046e8024e2619b (diff) | |
parent | b191bcc3bf89449ce6ea87db605a97766b21feb5 (diff) | |
download | packages_apps_Settings-f57bf32a3c1a4f12c0e2a0e955b6ac11ba0339e4.zip packages_apps_Settings-f57bf32a3c1a4f12c0e2a0e955b6ac11ba0339e4.tar.gz packages_apps_Settings-f57bf32a3c1a4f12c0e2a0e955b6ac11ba0339e4.tar.bz2 |
Merge "Fix owner info"
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/crypt_keeper_status.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/res/layout/crypt_keeper_status.xml b/res/layout/crypt_keeper_status.xml index 39e64b0..9015613 100644 --- a/res/layout/crypt_keeper_status.xml +++ b/res/layout/crypt_keeper_status.xml @@ -21,7 +21,7 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" > @@ -36,17 +36,18 @@ android:textAppearance="?android:attr/textAppearanceMedium" android:text="@string/enter_password" android:drawableLeft="@*android:drawable/ic_lock_idle_lock" + android:layout_gravity="center_horizontal" /> <TextView android:id="@+id/owner_info" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dip" + android:layout_marginStart="8dip" + android:layout_marginEnd="8dip" android:singleLine="true" android:ellipsize="marquee" android:marqueeRepeatLimit ="marquee_forever" - android:scrollHorizontally="true" - android:gravity="center" android:textSize="16sp" android:textAppearance="?android:attr/textAppearanceMedium" /> |