diff options
author | Vikram Aggarwal <viki@google.com> | 2012-05-02 15:08:38 -0700 |
---|---|---|
committer | Vikram Aggarwal <viki@google.com> | 2012-05-02 15:23:37 -0700 |
commit | c85f0408297737464ae51728dd6272ce03ee7a9b (patch) | |
tree | 6fdb5b4bc5dfb3492821789d6a7944e517de8ed8 /res/layout-sw600dp | |
parent | 9593b743cb625e88b97b2674c5f528bb07f96011 (diff) | |
download | packages_apps_settings-c85f0408297737464ae51728dd6272ce03ee7a9b.zip packages_apps_settings-c85f0408297737464ae51728dd6272ce03ee7a9b.tar.gz packages_apps_settings-c85f0408297737464ae51728dd6272ce03ee7a9b.tar.bz2 |
Include the clock in landscape on Xoom
1. R.id.status was defined twice and was used inconsistently in code:
(visibility set to enabled, but only on portrait...) This code removes
the bad view.
2. The TextView date was never used, either by another layout or by
code. Deleting this view too.
3. Including a standard status layout on smallest-width-600px, which includes
a clock and a status message on Xoom.
Fix b/6061076
Change-Id: Ibb492e89f6a4a38ac6a22398ec9c14bbe3fb7e3d
Diffstat (limited to 'res/layout-sw600dp')
-rw-r--r-- | res/layout-sw600dp/crypt_keeper_password_entry.xml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/res/layout-sw600dp/crypt_keeper_password_entry.xml b/res/layout-sw600dp/crypt_keeper_password_entry.xml index ad8205a..fe6edaf 100644 --- a/res/layout-sw600dp/crypt_keeper_password_entry.xml +++ b/res/layout-sw600dp/crypt_keeper_password_entry.xml @@ -57,19 +57,6 @@ > <include layout="@layout/crypt_keeper_password_field" /> </LinearLayout> - - <TextView android:id="@+id/status" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:layout_toRightOf="@+id/passwordLabel" - android:layout_below="@+id/passwordEntry" - android:paddingTop="8dip" - android:singleLine="true" - android:textSize="17sp" - android:textAppearance="?android:attr/textAppearanceMedium" - android:drawableLeft="@*android:drawable/ic_lock_idle_lock" - android:visibility="gone" - /> </RelativeLayout> </RelativeLayout> |