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
8 <TextView
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
11 android:paddingTop="8dp"
12 android:text="Jabber ID"
13 android:textColor="#33B5E5"
14 android:textSize="20sp"/>
15
16 <TextView
17 android:id="@+id/verify_otr_jid"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:paddingLeft="8dp"
21 android:text="julia@jabber.example.com"
22 android:textSize="14sp" />
23 <TextView
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:paddingTop="8dp"
27 android:text="OTR fingerprint"
28 android:textColor="#33B5E5"
29 android:textSize="20sp"/>
30
31 <TextView
32 android:id="@+id/verify_otr_fingerprint"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:paddingLeft="8dp"
36 android:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
37 android:textSize="14sp" />
38 <TextView
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 android:paddingTop="8dp"
42 android:text="Your fingerprint"
43 android:textColor="#33B5E5"
44 android:textSize="20sp"/>
45
46 <TextView
47 android:id="@+id/verify_otr_yourprint"
48 android:layout_width="wrap_content"
49 android:layout_height="wrap_content"
50 android:paddingLeft="8dp"
51 android:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
52 android:textSize="14sp" />
53</LinearLayout>