2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-24 04:43:55 +00:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip">
|
2012-07-23 20:42:29 +00:00
|
|
|
<TableLayout
|
2011-12-20 18:20:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:shrinkColumns="1">
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-07-24 04:43:55 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:text="Identity:"
|
|
|
|
android:layout_marginRight="7dip" />
|
2011-12-20 18:20:44 +00:00
|
|
|
<TextView
|
2012-07-24 04:43:55 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:typeface="monospace"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:id="@+id/identity_fingerprint"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:text=""
|
|
|
|
android:padding="3dip" />
|
|
|
|
</TableRow>
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
<TableRow>
|
2012-07-23 20:42:29 +00: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-07-23 20:50:12 +00:00
|
|
|
android:text="QR Code" />
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
<Button android:id="@+id/ok_button"
|
|
|
|
android:layout_margin="10dip"
|
|
|
|
android:padding="5dip"
|
|
|
|
android:layout_width="100dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Ok"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</TableRow>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
</TableLayout>
|
|
|
|
</ScrollView>
|