2016-02-29 13:18:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-02-17 20:41:46 +01:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-02-29 13:18:07 +01:00
|
|
|
|
2018-02-17 20:41:46 +01:00
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
android:id="@+id/foreign_keys_card"
|
2016-02-29 13:18:07 +01:00
|
|
|
|
2016-03-01 11:26:59 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-17 20:41:46 +01:00
|
|
|
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="@dimen/activity_vertical_margin">
|
2016-02-29 13:18:07 +01:00
|
|
|
|
2018-02-17 20:41:46 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2018-02-28 18:20:53 +01:00
|
|
|
android:padding="@dimen/card_padding_list">
|
2018-02-17 20:41:46 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/foreign_keys_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Title"
|
2018-02-28 18:20:53 +01:00
|
|
|
android:layout_margin="@dimen/list_padding"/>
|
2018-02-17 20:41:46 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/foreign_keys_details"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-28 18:20:53 +01:00
|
|
|
android:orientation="vertical">
|
2018-02-17 20:41:46 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_keys_to_accept"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/no_keys_just_confirm"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"
|
2018-02-28 18:20:53 +01:00
|
|
|
android:layout_margin="@dimen/list_padding"/>
|
2018-02-17 20:41:46 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
</layout>
|