diff options
author | Jason parks <jparks@google.com> | 2011-06-13 17:38:45 -0500 |
---|---|---|
committer | Jason parks <jparks@google.com> | 2011-06-13 17:39:25 -0500 |
commit | 00046d6e176eb05c3e3b0d13d38a8da7491bba5e (patch) | |
tree | e5c1dff078bc23c4f9439eb52adf8b918a7f3609 /res/layout/crypt_keeper_password_entry.xml | |
parent | 6fc9c2fd3733ee935cc7dbc648378b87f71351ca (diff) | |
download | packages_apps_Settings-00046d6e176eb05c3e3b0d13d38a8da7491bba5e.zip packages_apps_Settings-00046d6e176eb05c3e3b0d13d38a8da7491bba5e.tar.gz packages_apps_Settings-00046d6e176eb05c3e3b0d13d38a8da7491bba5e.tar.bz2 |
Get encryption working for phones.
I've removed the "special" keyboard from the phone
layouts for now.
Change-Id: I4b18279dafb18ba7cebacfad1b7167e34a7203b4
Diffstat (limited to 'res/layout/crypt_keeper_password_entry.xml')
-rw-r--r-- | res/layout/crypt_keeper_password_entry.xml | 43 |
1 files changed, 10 insertions, 33 deletions
diff --git a/res/layout/crypt_keeper_password_entry.xml b/res/layout/crypt_keeper_password_entry.xml index 4dce67a..a5193ce 100644 --- a/res/layout/crypt_keeper_password_entry.xml +++ b/res/layout/crypt_keeper_password_entry.xml @@ -30,39 +30,16 @@ > <include layout="@layout/crypt_keeper_status" /> </LinearLayout> - - <!-- right side: password --> - <LinearLayout - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" - android:gravity="center"> - <!-- Password entry field --> - <EditText android:id="@+id/passwordEntry" - android:layout_height="wrap_content" - android:layout_width="450dip" - android:singleLine="true" - android:textStyle="normal" - android:inputType="textPassword" - android:gravity="center" - android:layout_gravity="center" - android:textSize="24sp" - android:layout_marginTop="120dip" - android:layout_marginBottom="5dip" - android:textAppearance="?android:attr/textAppearanceMedium" - android:textColor="#ffffffff" - android:editable="false" - /> + <EditText android:id="@+id/passwordEntry" + android:layout_height="wrap_content" + android:layout_width="match_parent" + android:singleLine="true" + android:textStyle="normal" + android:inputType="textPassword" + android:textSize="24sp" + android:textAppearance="?android:attr/textAppearanceMedium" + android:textColor="#ffffffff" + /> - <com.android.internal.widget.PasswordEntryKeyboardView android:id="@+id/keyboard" - android:layout_width="450dip" - android:layout_height="230dip" - android:background="#00000000" - android:keyBackground="@*android:drawable/btn_keyboard_key_fulltrans" - android:visibility="visible" - /> - - </LinearLayout> - </LinearLayout>
\ No newline at end of file |