2014-06-21 14:25:51 -04:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
|
2014-06-22 07:33:50 -04:00
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="Passphrase"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/edit_key_action_change_passphrase"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="change passphrase"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
android:drawableRight="@drawable/ic_action_edit"
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:clickable="true"
|
|
|
|
style="@style/SelectableItem" />
|
|
|
|
|
2014-06-21 14:25:51 -04:00
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="@string/section_user_ids"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<org.sufficientlysecure.keychain.ui.widget.FixedListView
|
|
|
|
android:id="@+id/edit_key_user_ids"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-22 12:12:04 -04:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2014-06-24 16:58:28 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
2014-06-22 12:12:04 -04:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.FixedListView
|
|
|
|
android:id="@+id/edit_key_user_ids_added"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-06-21 14:25:51 -04:00
|
|
|
|
2014-06-22 07:33:50 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
<TextView
|
2014-06-22 12:12:04 -04:00
|
|
|
android:id="@+id/edit_key_action_add_user_id"
|
2014-06-22 07:33:50 -04:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="add identity"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
android:drawableRight="@drawable/ic_action_add_person"
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:clickable="true"
|
|
|
|
style="@style/SelectableItem" />
|
|
|
|
|
2014-06-21 14:25:51 -04:00
|
|
|
<TextView
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="@string/section_keys" />
|
|
|
|
|
|
|
|
<org.sufficientlysecure.keychain.ui.widget.FixedListView
|
|
|
|
android:id="@+id/edit_key_keys"
|
|
|
|
android:layout_width="match_parent"
|
2014-06-22 12:12:04 -04:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2014-06-24 16:58:28 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
2014-06-22 12:12:04 -04:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.FixedListView
|
2014-07-03 09:14:06 -04:00
|
|
|
android:id="@+id/edit_key_subkeys_added"
|
2014-06-22 12:12:04 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-06-21 14:25:51 -04:00
|
|
|
|
2014-06-22 07:33:50 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/edit_key_action_add_key"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="add key"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2014-07-02 09:10:50 -04:00
|
|
|
android:drawableRight="@drawable/ic_action_new_account"
|
2014-06-22 07:33:50 -04:00
|
|
|
android:drawablePadding="8dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:clickable="true"
|
|
|
|
style="@style/SelectableItem" />
|
|
|
|
|
2014-06-21 14:25:51 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|