55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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>
 | 
