2011-12-20 10:20:44 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-23 13:42:29 -07:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-23 21:43:55 -07:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip">
|
2012-07-23 13:42:29 -07:00
|
|
|
<TableLayout
|
2011-12-20 10:20:44 -08:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2011-12-20 10:20:44 -08:00
|
|
|
android:shrinkColumns="1">
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-07-23 21:43:55 -07:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2012-09-19 19:56:04 -07:00
|
|
|
android:text="@string/view_identity_activity__identity"
|
2012-07-23 21:43:55 -07:00
|
|
|
android:layout_marginRight="7dip" />
|
2011-12-20 10:20:44 -08:00
|
|
|
<TextView
|
2012-07-23 21:43:55 -07:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:typeface="monospace"
|
2012-07-23 13:42:29 -07:00
|
|
|
android:id="@+id/identity_fingerprint"
|
2011-12-20 10:20:44 -08:00
|
|
|
android:text=""
|
|
|
|
android:padding="3dip" />
|
|
|
|
</TableRow>
|
2012-07-23 13:42:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
<TableRow>
|
2012-07-23 13:42:29 -07:00
|
|
|
<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"
|
2012-09-19 19:56:04 -07:00
|
|
|
android:text="@string/view_identity_activity__qr_code" />
|
2012-07-23 13:42:29 -07:00
|
|
|
|
|
|
|
<Button android:id="@+id/ok_button"
|
|
|
|
android:layout_margin="10dip"
|
|
|
|
android:padding="5dip"
|
|
|
|
android:layout_width="100dip"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-07 20:03:23 -07:00
|
|
|
android:text="@android:string/ok"/>
|
2012-07-23 13:42:29 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</TableRow>
|
2011-12-20 10:20:44 -08:00
|
|
|
|
|
|
|
</TableLayout>
|
|
|
|
</ScrollView>
|