diff options
Diffstat (limited to 'OpenPGP-Keychain/res/layout/sign_key_activity.xml')
-rw-r--r-- | OpenPGP-Keychain/res/layout/sign_key_activity.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/res/layout/sign_key_activity.xml b/OpenPGP-Keychain/res/layout/sign_key_activity.xml new file mode 100644 index 000000000..b9f66db7f --- /dev/null +++ b/OpenPGP-Keychain/res/layout/sign_key_activity.xml @@ -0,0 +1,54 @@ +<?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" > + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + </LinearLayout> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + + <TextView + android:id="@+id/textView1" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/label_send_key" + android:textAppearance="?android:attr/textAppearanceMedium" > + </TextView> + + <CheckBox + android:id="@+id/sendKey" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:checked="true" + android:text="" > + </CheckBox> + </LinearLayout> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + + <Spinner + android:id="@+id/keyServer" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" /> + </LinearLayout> + + <Button + android:id="@+id/sign" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/btn_sign" > + </Button> + +</LinearLayout>
\ No newline at end of file |