Files
open-keychain/OpenKeychain/src/main/res/layout/view_key_fragment.xml

89 lines
3.5 KiB
XML
Raw Normal View History

2015-08-28 04:20:43 +02:00
<LinearLayout 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="wrap_content"
android:orientation="vertical"
2015-08-28 15:18:11 +02:00
android:paddingBottom="16dp"
2015-08-28 04:20:43 +02:00
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp">
2015-02-24 11:25:19 +01:00
2015-08-28 04:20:43 +02:00
<android.support.v7.widget.CardView
android:id="@+id/card_view"
2015-02-24 11:25:19 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:layout_gravity="center"
card_view:cardBackgroundColor="?attr/colorCardViewBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true">
2015-02-24 11:25:19 +01:00
2015-08-28 04:20:43 +02:00
<LinearLayout
2015-02-24 11:25:19 +01:00
android:layout_width="match_parent"
2015-02-25 18:37:31 +01:00
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:orientation="vertical">
2015-08-28 04:20:43 +02:00
<TextView
style="@style/CardViewHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:text="@string/section_user_ids" />
2015-08-28 04:20:43 +02:00
<org.sufficientlysecure.keychain.ui.widget.FixedListView
android:id="@+id/view_key_user_ids"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp" />
</LinearLayout>
</android.support.v7.widget.CardView>
2015-08-28 04:20:43 +02:00
<android.support.v7.widget.CardView
android:id="@+id/linked_system_contact_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone"
card_view:cardBackgroundColor="?attr/colorCardViewBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true">
2015-02-24 11:25:19 +01:00
2015-08-28 04:20:43 +02:00
<LinearLayout
2015-03-09 00:37:14 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:orientation="vertical">
<TextView
style="@style/CardViewHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/section_linked_system_contact" />
2015-03-09 00:37:14 +05:30
<LinearLayout
2015-08-28 04:20:43 +02:00
android:id='@+id/system_contact_layout'
2015-03-09 00:37:14 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:background="?android:selectableItemBackground"
android:clickable="true"
android:orientation="horizontal">
<ImageView
android:id="@+id/system_contact_picture"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_margin="6dp"
android:scaleType="centerCrop"
android:src="@drawable/ic_person_grey_48dp" />
2015-03-09 00:37:14 +05:30
<TextView
2015-08-28 04:20:43 +02:00
android:id="@+id/system_contact_name"
2015-03-09 00:37:14 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-08-28 04:20:43 +02:00
android:layout_gravity="center_vertical"
android:text="@string/view_key_fragment_no_system_contact"
android:textAppearance="?android:attr/textAppearanceMedium" />
2015-03-09 00:37:14 +05:30
</LinearLayout>
2015-08-28 04:20:43 +02:00
</LinearLayout>
</android.support.v7.widget.CardView>
2015-02-24 11:25:19 +01:00
2015-08-28 04:20:43 +02:00
</LinearLayout>