aboutsummaryrefslogtreecommitdiffstats
path: root/org_apg_integration_demo/res/layout
diff options
context:
space:
mode:
authorDominik <dominik@dominikschuermann.de>2012-04-11 19:29:27 +0200
committerDominik <dominik@dominikschuermann.de>2012-06-13 19:28:21 +0300
commit2f58c3d86b29c9539d5a0d20b160ac175bb00381 (patch)
treeeaad5880bbd0cb1156b197cb19596a0e60c2f868 /org_apg_integration_demo/res/layout
parente092016518f8ab7413095ffed140a732c7f751a6 (diff)
downloadopen-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.tar.gz
open-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.tar.bz2
open-keychain-2f58c3d86b29c9539d5a0d20b160ac175bb00381.zip
integration lib and demo
Diffstat (limited to 'org_apg_integration_demo/res/layout')
-rw-r--r--org_apg_integration_demo/res/layout/intent_demo.xml65
1 files changed, 65 insertions, 0 deletions
diff --git a/org_apg_integration_demo/res/layout/intent_demo.xml b/org_apg_integration_demo/res/layout/intent_demo.xml
new file mode 100644
index 000000000..825a198b5
--- /dev/null
+++ b/org_apg_integration_demo/res/layout/intent_demo.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ <Button
+ android:id="@+id/intent_demo_select_secret_key"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:onClick="intentDemoSelectSecretKeyOnClick"
+ android:text="Select secret key" />
+
+ <Button
+ android:id="@+id/intent_demo_select_encryption_key"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:onClick="intentDemoSelectEncryptionKeysOnClick"
+ android:text="Select encryption key(s)" />
+
+ <EditText
+ android:id="@+id/intent_demo_message"
+ android:layout_width="match_parent"
+ android:layout_height="150dip"
+ android:text="message"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+
+ <EditText
+ android:id="@+id/intent_demo_ciphertext"
+ android:layout_width="match_parent"
+ android:layout_height="150dip"
+ android:text="ciphertext"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+
+ <Button
+ android:id="@+id/intent_demo_encrypt"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:onClick="intentDemoEncryptOnClick"
+ android:text="Encrypt" />
+
+ <Button
+ android:id="@+id/intent_demo_decrypt"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:onClick="intentDemoDecryptOnClick"
+ android:text="Decrypt" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:text="APG Data:" />
+
+ <TextView
+ android:id="@+id/intent_demo_data"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:minLines="10" />
+ </LinearLayout>
+
+</ScrollView> \ No newline at end of file