mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
bb0ec65744
This should help eliminate string duplicates, as well as provide visibility into where strings in a resource file are being used.
51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginLeft="16dip"
|
|
android:layout_marginRight="16dip">
|
|
<TableLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:shrinkColumns="1">
|
|
|
|
<TableRow>
|
|
<TextView
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text="@string/view_identity_activity__identity"
|
|
android:layout_marginRight="7dip" />
|
|
<TextView
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:typeface="monospace"
|
|
android:id="@+id/identity_fingerprint"
|
|
android:text=""
|
|
android:padding="3dip" />
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_span="2">
|
|
|
|
<Button android:id="@+id/compare_button"
|
|
android:layout_margin="10dip"
|
|
android:padding="5dip"
|
|
android:layout_width="100dip"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/view_identity_activity__qr_code" />
|
|
|
|
<Button android:id="@+id/ok_button"
|
|
android:layout_margin="10dip"
|
|
android:padding="5dip"
|
|
android:layout_width="100dip"
|
|
android:layout_height="wrap_content"
|
|
android:text="@android:string/ok"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
</ScrollView> |