summaryrefslogtreecommitdiffstats
path: root/res/layout/contact_card.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/contact_card.xml')
-rw-r--r--res/layout/contact_card.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/res/layout/contact_card.xml b/res/layout/contact_card.xml
new file mode 100644
index 000000000..367e79f84
--- /dev/null
+++ b/res/layout/contact_card.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:id="@+id/contact_card"
+ android:layout_marginLeft="16dp"
+ android:layout_marginRight="16dp"
+ android:layout_marginTop="20dp">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/contact_card_title"
+ android:textSize="16sp"
+ android:fontFamily="sans-serif-light"
+ android:textColor="@color/home_next_text_divider"
+ android:layout_marginBottom="12dp"/>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <de.hdodenhof.circleimageview.CircleImageView
+ android:layout_width="64dp"
+ android:layout_height="64dp"
+ android:id="@+id/contact_image_one"/>
+
+ <View
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_weight="1"/>
+
+ <de.hdodenhof.circleimageview.CircleImageView
+ android:layout_width="64dp"
+ android:layout_height="64dp"
+ android:id="@+id/contact_image_two"/>
+
+ <View
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_weight="1"/>
+
+ <de.hdodenhof.circleimageview.CircleImageView
+ android:layout_width="64dp"
+ android:layout_height="64dp"
+ android:id="@+id/contact_image_three"/>
+
+ <View
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_weight="1"/>
+
+ <de.hdodenhof.circleimageview.CircleImageView
+ android:layout_width="64dp"
+ android:layout_height="64dp"
+ android:id="@+id/contact_image_four"/>
+
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file