1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical"
6 android:paddingLeft="8dp"
7 android:paddingBottom="16dp"
8 android:paddingRight="8dp">
9
10 <TextView
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 android:paddingTop="8dp"
14 android:text="Jabber ID"
15 android:textColor="@color/primarytext"
16 android:textSize="?attr/TextSizeHeadline"/>
17
18 <TextView
19 android:id="@+id/verify_otr_jid"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:paddingLeft="8dp"
23 android:textSize="?attr/TextSizeBody"
24 android:textColor="@color/secondarytext"/>
25 <TextView
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:paddingTop="8dp"
29 android:text="@string/otr_fingerprint"
30 android:textColor="@color/primarytext"
31 android:textSize="?attr/TextSizeHeadline"/>
32
33 <TextView
34 android:id="@+id/verify_otr_fingerprint"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:paddingLeft="8dp"
38 android:textSize="?attr/TextSizeBody"
39 android:typeface="monospace"
40 android:textColor="@color/secondarytext"/>
41 <TextView
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:paddingTop="8dp"
45 android:text="@string/your_fingerprint"
46 android:textSize="?attr/TextSizeHeadline"
47 android:textColor="@color/primarytext"/>
48
49 <TextView
50 android:id="@+id/verify_otr_yourprint"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
53 android:paddingLeft="8dp"
54 android:textSize="?attr/TextSizeBody"
55 android:typeface="monospace"
56 android:textColor="@color/secondarytext"/>
57</LinearLayout>