mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
72 lines
2.5 KiB
XML
72 lines
2.5 KiB
XML
<?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/crypto_provider_demo_register"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="registerCryptoProvider"
|
|
android:text="Register crypto provider" />
|
|
|
|
<Button
|
|
android:id="@+id/aidl_demo_select_secret_key"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="selectSecretKeyOnClick"
|
|
android:text="Select secret key" />
|
|
|
|
<Button
|
|
android:id="@+id/aidl_demo_select_encryption_key"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="selectEncryptionKeysOnClick"
|
|
android:text="Select encryption key(s)" />
|
|
|
|
<EditText
|
|
android:id="@+id/aidl_demo_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dip"
|
|
android:text="message"
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
|
|
|
<EditText
|
|
android:id="@+id/aidl_demo_ciphertext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dip"
|
|
android:text="ciphertext"
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
|
|
|
<Button
|
|
android:id="@+id/aidl_demo_encrypt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="encryptOnClick"
|
|
android:text="Encrypt" />
|
|
|
|
<Button
|
|
android:id="@+id/aidl_demo_decrypt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="decryptOnClick"
|
|
android:text="Decrypt" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:text="APG Data:" />
|
|
|
|
<TextView
|
|
android:id="@+id/aidl_demo_data"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:minLines="10" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |