diff options
| author | Ashley Hughes <spirit.returned@gmail.com> | 2014-02-22 10:27:03 +0000 | 
|---|---|---|
| committer | Ashley Hughes <spirit.returned@gmail.com> | 2014-02-22 10:27:03 +0000 | 
| commit | 1b25ec5a0c011f5024d5f14f9919645a455e8a41 (patch) | |
| tree | f819ac3cea715f3c5cfc5f40bbf8673013ccc7ff /OpenPGP-Keychain-API/example-app/src/main/res | |
| parent | c3c311152ef33a6887909dbbeae40e8d01f96a9d (diff) | |
| parent | d1e8acd3027dce6fd34620b67a2d2be1634822cf (diff) | |
| download | open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.tar.gz open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.tar.bz2 open-keychain-1b25ec5a0c011f5024d5f14f9919645a455e8a41.zip | |
master merge
Diffstat (limited to 'OpenPGP-Keychain-API/example-app/src/main/res')
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/drawable-hdpi/ic_launcher.png | bin | 0 -> 2626 bytes | |||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/drawable-mdpi/ic_launcher.png | bin | 0 -> 1732 bytes | |||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/drawable-xhdpi/ic_launcher.png | bin | 0 -> 3517 bytes | |||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/drawable-xxhdpi/ic_launcher.png | bin | 0 -> 5717 bytes | |||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/layout/openpgp_provider.xml | 108 | ||||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/xml/base_preference.xml | 18 | ||||
| -rw-r--r-- | OpenPGP-Keychain-API/example-app/src/main/res/xml/intent_preference.xml | 30 | 
7 files changed, 156 insertions, 0 deletions
| diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/drawable-hdpi/ic_launcher.png b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-hdpi/ic_launcher.pngBinary files differ new file mode 100644 index 000000000..cf114d7db --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-hdpi/ic_launcher.png diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/drawable-mdpi/ic_launcher.png b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-mdpi/ic_launcher.pngBinary files differ new file mode 100644 index 000000000..d55318843 --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-mdpi/ic_launcher.png diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xhdpi/ic_launcher.png b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xhdpi/ic_launcher.pngBinary files differ new file mode 100644 index 000000000..13ed3d450 --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xhdpi/ic_launcher.png diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xxhdpi/ic_launcher.png b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xxhdpi/ic_launcher.pngBinary files differ new file mode 100644 index 000000000..831c993d4 --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/drawable-xxhdpi/ic_launcher.png diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/layout/openpgp_provider.xml b/OpenPGP-Keychain-API/example-app/src/main/res/layout/openpgp_provider.xml new file mode 100644 index 000000000..6c2ce1a7c --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/layout/openpgp_provider.xml @@ -0,0 +1,108 @@ +<?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 ',')" +            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: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:textAppearance="@android:style/TextAppearance.Small" /> +        </ScrollView> + +        <LinearLayout +            android:layout_width="match_parent" +            android:layout_height="wrap_content"> + +            <Button +                android:id="@+id/crypto_provider_demo_sign" +                android:layout_width="match_parent" +                android:layout_height="wrap_content" +                android:layout_weight="1" +                android:text="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> + +        <Button +            android:id="@+id/crypto_provider_demo_decrypt_and_verify" +            android:layout_width="match_parent" +            android:layout_height="wrap_content" +            android:text="Decrypt and Verify" /> + +    </LinearLayout> +</ScrollView>
\ No newline at end of file diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/xml/base_preference.xml b/OpenPGP-Keychain-API/example-app/src/main/res/xml/base_preference.xml new file mode 100644 index 000000000..b38e07a36 --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/src/main/res/xml/base_preference.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + +    <PreferenceCategory android:title="OpenKeychain Intents"> +        <Preference +            android:key="intent_demo" +            android:title="Intent Demo" /> +    </PreferenceCategory> +    <PreferenceCategory android:title="OpenPGP Provider API"> +        <org.openintents.openpgp.util.OpenPgpListPreference +            android:key="openpgp_provider_list" +            android:title="Select OpenPGP Provider!" /> +        <Preference +            android:key="openpgp_provider_demo" +            android:title="OpenPGP Provider Demo" /> +    </PreferenceCategory> + +</PreferenceScreen>
\ No newline at end of file diff --git a/OpenPGP-Keychain-API/example-app/src/main/res/xml/intent_preference.xml b/OpenPGP-Keychain-API/example-app/src/main/res/xml/intent_preference.xml new file mode 100644 index 000000000..801e4a78a --- /dev/null +++ b/OpenPGP-Keychain-API/example-app/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 | 
