aboutsummaryrefslogtreecommitdiffstats
path: root/example/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'example/src/main/res')
-rw-r--r--example/src/main/res/drawable-hdpi/ic_launcher.pngbin0 -> 2626 bytes
-rw-r--r--example/src/main/res/drawable-mdpi/ic_launcher.pngbin0 -> 1732 bytes
-rw-r--r--example/src/main/res/drawable-xhdpi/ic_launcher.pngbin0 -> 3517 bytes
-rw-r--r--example/src/main/res/drawable-xxhdpi/ic_launcher.pngbin0 -> 5717 bytes
-rw-r--r--example/src/main/res/layout/openpgp_provider.xml190
-rw-r--r--example/src/main/res/xml/base_preference.xml16
-rw-r--r--example/src/main/res/xml/intent_preference.xml30
7 files changed, 236 insertions, 0 deletions
diff --git a/example/src/main/res/drawable-hdpi/ic_launcher.png b/example/src/main/res/drawable-hdpi/ic_launcher.png
new file mode 100644
index 0000000..cf114d7
--- /dev/null
+++ b/example/src/main/res/drawable-hdpi/ic_launcher.png
Binary files differ
diff --git a/example/src/main/res/drawable-mdpi/ic_launcher.png b/example/src/main/res/drawable-mdpi/ic_launcher.png
new file mode 100644
index 0000000..d553188
--- /dev/null
+++ b/example/src/main/res/drawable-mdpi/ic_launcher.png
Binary files differ
diff --git a/example/src/main/res/drawable-xhdpi/ic_launcher.png b/example/src/main/res/drawable-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..13ed3d4
--- /dev/null
+++ b/example/src/main/res/drawable-xhdpi/ic_launcher.png
Binary files differ
diff --git a/example/src/main/res/drawable-xxhdpi/ic_launcher.png b/example/src/main/res/drawable-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..831c993
--- /dev/null
+++ b/example/src/main/res/drawable-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/example/src/main/res/layout/openpgp_provider.xml b/example/src/main/res/layout/openpgp_provider.xml
new file mode 100644
index 0000000..13096b4
--- /dev/null
+++ b/example/src/main/res/layout/openpgp_provider.xml
@@ -0,0 +1,190 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/parent_scroll"
+ android:fillViewport="true"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <LinearLayout
+ android:padding="8dp"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Encrypt UserIds (split with &apos;,&apos;)"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+
+ <EditText
+ android:id="@+id/crypto_provider_demo_encrypt_user_id"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="dominik@dominikschuermann.de"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Message"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+
+ <ScrollView
+ android:id="@+id/child_scroll1"
+ android:fillViewport="true"
+ android:layout_width="match_parent"
+ android:layout_height="120dp">
+
+ <EditText
+ android:id="@+id/crypto_provider_demo_message"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:scrollHorizontally="true"
+ android:scrollbars="vertical"
+ android:text="message"
+ android:hint="cleartext message"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+ </ScrollView>
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Ciphertext"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <ScrollView
+ android:id="@+id/child_scroll2"
+ android:fillViewport="true"
+ android:layout_width="match_parent"
+ android:layout_height="120dp">
+
+ <EditText
+ android:id="@+id/crypto_provider_demo_ciphertext"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:text="ciphertext"
+ android:hint="ciphertext"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+ </ScrollView>
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Detached signature"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <ScrollView
+ android:id="@+id/child_scroll3"
+ android:fillViewport="true"
+ android:layout_width="match_parent"
+ android:layout_height="60dp">
+
+ <EditText
+ android:id="@+id/crypto_provider_demo_detached_signature"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:text="detached signature"
+ android:hint="detached signature"
+ android:textAppearance="@android:style/TextAppearance.Small" />
+ </ScrollView>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <Button
+ android:id="@+id/crypto_provider_demo_cleartext_sign"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Cleartext Sign"
+ android:layout_gravity="center_vertical" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_detached_sign"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Detached Sign"
+ android:layout_gravity="center_vertical" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_encrypt"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Encrypt"
+ android:layout_gravity="center_vertical" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_sign_and_encrypt"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Sign and Encrypt"
+ android:layout_gravity="center_vertical" />
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <Button
+ android:id="@+id/crypto_provider_demo_decrypt_and_verify"
+ android:layout_weight="1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:text="Decrypt and Verify" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_verify_detached_signature"
+ android:layout_weight="1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:text="Verify detached signature" />
+ </LinearLayout>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Get key:"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="0x718c070100012282"
+ android:id="@+id/crypto_provider_demo_get_key_edit" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_get_key"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Get key" />
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Get key ids:"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="dominik@dominikschuermann.de"
+ android:id="@+id/crypto_provider_demo_get_key_ids_edit" />
+
+ <Button
+ android:id="@+id/crypto_provider_demo_get_key_ids"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Get key ids" />
+
+ </LinearLayout>
+</ScrollView> \ No newline at end of file
diff --git a/example/src/main/res/xml/base_preference.xml b/example/src/main/res/xml/base_preference.xml
new file mode 100644
index 0000000..cd214f4
--- /dev/null
+++ b/example/src/main/res/xml/base_preference.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <PreferenceCategory android:title="OpenPGP API">
+ <org.openintents.openpgp.util.OpenPgpAppPreference
+ android:key="openpgp_provider_list"
+ android:title="Select OpenPGP app!" />
+ <org.openintents.openpgp.util.OpenPgpKeyPreference
+ android:key="openpgp_key"
+ android:title="Select key!" />
+ <Preference
+ android:key="openpgp_provider_demo"
+ android:title="OpenPGP API Example" />
+ </PreferenceCategory>
+
+</PreferenceScreen> \ No newline at end of file
diff --git a/example/src/main/res/xml/intent_preference.xml b/example/src/main/res/xml/intent_preference.xml
new file mode 100644
index 0000000..801e4a7
--- /dev/null
+++ b/example/src/main/res/xml/intent_preference.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <PreferenceCategory android:title="Intents (org.sufficientlysecure.keychain.action.)">
+ <Preference
+ android:key="ENCRYPT"
+ android:title="ENCRYPT" />
+ <Preference
+ android:key="ENCRYPT_URI"
+ android:title="ENCRYPT with Uri" />
+ <Preference
+ android:key="DECRYPT"
+ android:title="DECRYPT" />
+ <Preference
+ android:key="IMPORT_KEY"
+ android:title="IMPORT_KEY" />
+ <Preference
+ android:key="IMPORT_KEY_FROM_KEYSERVER"
+ android:title="IMPORT_KEY_FROM_KEYSERVER" />
+ <Preference
+ android:key="IMPORT_KEY_FROM_QR_CODE"
+ android:title="IMPORT_KEY_FROM_QR_CODE" />
+ </PreferenceCategory>
+ <PreferenceCategory android:title="Special Intents">
+ <Preference
+ android:key="openpgp4fpr"
+ android:title="VIEW openpgp4fpr:73EE2314F65FA92EC2390D3A718C070100012282" />
+ </PreferenceCategory>
+
+</PreferenceScreen> \ No newline at end of file