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:paddingLeft="8dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:paddingRight="8dp">
|
2014-02-16 16:32:15 +01:00
|
|
|
|
|
|
|
<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:text="julia@jabber.example.com"
|
|
|
|
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:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
|
2014-02-19 01:35:23 +01:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:typeface="monospace"/>
|
2014-02-16 16:32:15 +01:00
|
|
|
<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:text="2674D6A0 0B1421B1 BFC42AEC C56F3719 672437D8"
|
2014-02-19 01:35:23 +01:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:typeface="monospace"/>
|
2014-02-16 16:32:15 +01:00
|
|
|
</LinearLayout>
|