2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView android:id="@+id/ScrollView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="10dip">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/description_text"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="17dip"
|
|
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/signature_text"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="17dip"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:layout_marginBottom="10dip" />
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button android:id="@+id/verify_session_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-20 02:56:04 +00:00
|
|
|
android:text="@string/receive_key_activity__session"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
|
|
|
<Button android:id="@+id/verify_identity_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-20 02:56:04 +00:00
|
|
|
android:text="@string/receive_key_activity__identities"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
|
|
|
<Button android:id="@+id/ok_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-20 02:56:04 +00:00
|
|
|
android:text="@string/receive_key_activity__complete_exchange"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:gravity="center"/>
|
|
|
|
|
|
|
|
<Button android:id="@+id/cancel_button"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@android:string/cancel"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
|