diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-12-30 16:47:42 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-12-30 16:47:42 +0100 |
commit | 269330f04f6b4a438a2e3ae3f5e714be50443fc6 (patch) | |
tree | 4d7a953b4d7c78393ed37523d0477c9f2bf42413 /OpenKeychain/src/main/res/layout | |
parent | 3f705117080def34b7793f6935e6ec7b6109d741 (diff) | |
download | open-keychain-269330f04f6b4a438a2e3ae3f5e714be50443fc6.tar.gz open-keychain-269330f04f6b4a438a2e3ae3f5e714be50443fc6.tar.bz2 open-keychain-269330f04f6b4a438a2e3ae3f5e714be50443fc6.zip |
Add activity to edit user ids only
Diffstat (limited to 'OpenKeychain/src/main/res/layout')
-rw-r--r-- | OpenKeychain/src/main/res/layout/edit_identities_activity.xml | 25 | ||||
-rw-r--r-- | OpenKeychain/src/main/res/layout/edit_identities_fragment.xml | 77 |
2 files changed, 102 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/res/layout/edit_identities_activity.xml b/OpenKeychain/src/main/res/layout/edit_identities_activity.xml new file mode 100644 index 000000000..c8b0e3afc --- /dev/null +++ b/OpenKeychain/src/main/res/layout/edit_identities_activity.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <include + android:id="@+id/toolbar_include" + layout="@layout/toolbar_standalone" /> + + <LinearLayout + android:layout_below="@id/toolbar_include" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <include layout="@layout/notify_area" /> + + <FrameLayout + android:id="@+id/edit_key_fragment_container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" /> + + </LinearLayout> +</RelativeLayout>
\ No newline at end of file diff --git a/OpenKeychain/src/main/res/layout/edit_identities_fragment.xml b/OpenKeychain/src/main/res/layout/edit_identities_fragment.xml new file mode 100644 index 000000000..7d8b9548f --- /dev/null +++ b/OpenKeychain/src/main/res/layout/edit_identities_fragment.xml @@ -0,0 +1,77 @@ +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:card_view="http://schemas.android.com/apk/res-auto" + 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:paddingBottom="16dp" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:paddingTop="16dp"> + + <android.support.v7.widget.CardView + android:id="@+id/view_key_card_user_ids" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="center" + card_view:cardBackgroundColor="?attr/colorCardViewBackground" + card_view:cardCornerRadius="4dp" + card_view:cardElevation="2dp" + card_view:cardUseCompatPadding="true"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + style="@style/CardViewHeader" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/section_linked_identities" /> + + <org.sufficientlysecure.keychain.ui.widget.FixedListView + android:id="@+id/edit_key_user_ids" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <View + android:layout_width="match_parent" + android:layout_height="1dip" + android:background="?android:attr/listDivider" /> + + <org.sufficientlysecure.keychain.ui.widget.FixedListView + android:id="@+id/edit_key_user_ids_added" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <View + android:layout_width="match_parent" + android:layout_height="1dip" + android:background="?android:attr/listDivider" /> + + <TextView + android:id="@+id/edit_key_action_add_user_id" + style="?android:attr/borderlessButtonStyle" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:clickable="true" + android:drawablePadding="8dp" + android:drawableRight="@drawable/ic_person_add_grey_24dp" + android:gravity="center_vertical" + android:minHeight="?android:attr/listPreferredItemHeight" + android:paddingLeft="8dp" + android:paddingRight="8dp" + android:text="@string/edit_key_action_add_identity" + android:textAppearance="?android:attr/textAppearanceMedium" /> + + </LinearLayout> + + </android.support.v7.widget.CardView> + + </LinearLayout> + +</ScrollView> |