aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API/example-app/src/main/res/layout/intent_demo.xml
blob: a765343f9c0b795cf2a5b4717ffb9295483d447e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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/Button02"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="encryptOnClick"
            android:text="Encrypt" />

        <Button
            android:id="@+id/intent_demo_create_new_key"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="createNewKeyOnClick"
            android:text="Create new key" />

        <Button
            android:id="@+id/intent_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/intent_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/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="encryptOnClick"
            android:text="Encrypt" />

        <Button
            android:id="@+id/intent_demo_encrypt"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="encryptAndReturnOnClick"
            android:text="Encrypt and return result" />

        <Button
            android:id="@+id/intent_demo_decrypt"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="decryptOnClick"
            android:text="Decrypt" />

        <Button
            android:id="@+id/intent_demo_decrypt"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="decryptAndReturnOnClick"
            android:text="Decrypt and return result" />

        <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>