2014-02-16 16:32:15 +01:00
|
|
|
<?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"
|
2014-02-19 01:35:23 +01:00
|
|
|
android:paddingBottom="16dp"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp" >
|
|
|
|
|
|
|
|
<TextView
|
2014-02-16 16:32:15 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:text="Jabber ID"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:textColor="@color/primarytext"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
2014-02-16 16:32:15 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/verify_otr_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textColor="@color/secondarytext"
|
|
|
|
android:textSize="?attr/TextSizeBody" />
|
|
|
|
|
|
|
|
<TextView
|
2014-02-16 16:32:15 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="8dp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:text="@string/otr_fingerprint"
|
|
|
|
android:textColor="@color/primarytext"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
2014-02-16 16:32:15 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/verify_otr_fingerprint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textColor="@color/secondarytext"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:typeface="monospace" />
|
|
|
|
|
|
|
|
<TextView
|
2014-02-16 16:32:15 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="8dp"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:text="@string/your_fingerprint"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textColor="@color/primarytext"
|
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
2014-02-16 16:32:15 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/verify_otr_yourprint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textColor="@color/secondarytext"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:typeface="monospace" />
|
|
|
|
|
|
|
|
</LinearLayout>
|