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="#33B5E5"
16 android:textSize="20sp"/>
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:text="julia@jabber.example.com"
24 android:textSize="14sp" />
25 <TextView
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:paddingTop="8dp"
29 android:text="OTR fingerprint"
30 android:textColor="#33B5E5"
31 android:textSize="20sp"/>
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:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
39 android:textSize="14sp"
40 android:typeface="monospace"/>
41 <TextView
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:paddingTop="8dp"
45 android:text="Your fingerprint"
46 android:textColor="#33B5E5"
47 android:textSize="20sp"/>
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:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
55 android:textSize="14sp"
56 android:typeface="monospace"/>
57</LinearLayout>