diff options
Diffstat (limited to 'src/main/res/layout/keys_card.xml')
-rw-r--r-- | src/main/res/layout/keys_card.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/res/layout/keys_card.xml b/src/main/res/layout/keys_card.xml new file mode 100644 index 00000000..7a502816 --- /dev/null +++ b/src/main/res/layout/keys_card.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" +android:id="@+id/foreign_keys_card" +android:layout_width="fill_parent" +android:layout_height="wrap_content" +android:layout_marginLeft="@dimen/activity_horizontal_margin" +android:layout_marginRight="@dimen/activity_horizontal_margin" +android:layout_marginTop="@dimen/activity_vertical_margin" +android:layout_marginBottom="@dimen/activity_vertical_margin" +android:background="@drawable/infocard_border" +android:orientation="vertical" +android:padding="@dimen/infocard_padding"> + +<TextView + android:id="@+id/foreign_keys_title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="@color/black87" + android:textSize="?attr/TextSizeHeadline" + android:textStyle="bold"/> + +<LinearLayout + android:id="@+id/foreign_keys_details" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:divider="?android:dividerHorizontal" + android:showDividers="middle" + android:orientation="vertical"> +</LinearLayout> + +</LinearLayout>
\ No newline at end of file |