2015-02-24 11:25:19 +01:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-25 13:49:21 +01:00
|
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
2015-02-24 11:25:19 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2015-02-25 13:49:21 +01:00
|
|
|
android:paddingTop="16dp"
|
2015-02-24 11:25:19 +01:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
|
|
2015-02-25 13:49:21 +01:00
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
|
android:id="@+id/card_view"
|
|
|
|
|
android:layout_gravity="center"
|
2015-02-24 11:25:19 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="200dp"
|
2015-02-25 13:49:21 +01:00
|
|
|
card_view:cardCornerRadius="4dp">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
style="@style/SectionHeader"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:text="@string/section_user_ids" />
|
|
|
|
|
|
|
|
|
|
<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-02-24 11:25:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|