aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/dialog_verify_otr.xml
blob: 6dfe149dcbe10ed9690cd73f226c7ebc9144fb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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="match_parent"
    android:orientation="vertical"
    android:paddingLeft="8dp"
    android:paddingBottom="16dp"
    android:paddingRight="8dp">
    
 <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="8dp"
        android:text="Jabber ID"
        android:textColor="#33B5E5"
        android:textSize="20sp"/>

    <TextView
        android:id="@+id/verify_otr_jid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="8dp"
        android:textSize="14sp" />
     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="8dp"
        android:text="OTR fingerprint"
        android:textColor="#33B5E5"
        android:textSize="20sp"/>

    <TextView
        android:id="@+id/verify_otr_fingerprint"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="8dp"
        android:textSize="14sp"
        android:typeface="monospace"/>
     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="8dp"
        android:text="Your fingerprint"
        android:textColor="#33B5E5"
        android:textSize="20sp"/>

    <TextView
        android:id="@+id/verify_otr_yourprint"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="8dp"
        android:textSize="14sp"
        android:typeface="monospace"/>
</LinearLayout>