Merge "Fix keystore demo layout for Nexus 7" into mnc-dev

This commit is contained in:
Robin Lee
2015-05-13 18:28:21 +00:00
committed by Android (Google) Code Review
2 changed files with 10 additions and 7 deletions

View File

@@ -83,12 +83,12 @@
<EditText
android:id="@+id/plaintext"
android:layout_width="fill_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/plaintext_label"
android:layout_alignParentRight="true"
android:layout_below="@+id/key_ops_header"
android:layout_toRightOf="@id/plaintext_label"
android:layout_toRightOf="@+id/plaintext_label"
android:layout_marginBottom="12dp"
android:ems="10"
android:maxLines="1" />
@@ -102,12 +102,12 @@
<EditText
android:id="@+id/ciphertext"
android:layout_width="fill_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/ciphertext_label"
android:layout_alignParentRight="true"
android:layout_below="@+id/plaintext"
android:layout_toRightOf="@id/ciphertext_label"
android:layout_toRightOf="@+id/ciphertext_label"
android:layout_marginBottom="12dp"
android:maxLines="1" />
<LinearLayout

View File

@@ -129,6 +129,7 @@ public class KeyStoreUsage extends Activity {
ListView lv = (ListView) findViewById(R.id.entries_list);
mAdapter = new AliasAdapter(getApplicationContext());
lv.setAdapter(mAdapter);
lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
@@ -250,6 +251,8 @@ public class KeyStoreUsage extends Activity {
* enabled or disabled.
*/
private void setKeyActionButtonsEnabled(boolean enabled) {
mPlainText.setEnabled(enabled);
mCipherText.setEnabled(enabled);
mSignButton.setEnabled(enabled);
mVerifyButton.setEnabled(enabled);
mDeleteButton.setEnabled(enabled);