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:paddingBottom="16dp"
7 android:paddingLeft="8dp"
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="@string/account_settings_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:textColor="@color/secondarytext"
24 android:textSize="?attr/TextSizeBody" />
25
26 <TextView
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:paddingTop="8dp"
30 android:text="@string/otr_fingerprint"
31 android:textColor="@color/primarytext"
32 android:textSize="?attr/TextSizeHeadline" />
33
34 <TextView
35 android:id="@+id/verify_otr_fingerprint"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:paddingLeft="8dp"
39 android:textColor="@color/secondarytext"
40 android:textSize="?attr/TextSizeBody"
41 android:typeface="monospace" />
42
43 <TextView
44 android:layout_width="wrap_content"
45 android:layout_height="wrap_content"
46 android:paddingTop="8dp"
47 android:text="@string/your_fingerprint"
48 android:textColor="@color/primarytext"
49 android:textSize="?attr/TextSizeHeadline" />
50
51 <TextView
52 android:id="@+id/verify_otr_yourprint"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:paddingLeft="8dp"
56 android:textColor="@color/secondarytext"
57 android:textSize="?attr/TextSizeBody"
58 android:typeface="monospace" />
59
60</LinearLayout>