aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/menu/encrypt_text_fragment.xml
blob: 4d3d53870ba29f43d322cf627794dbb0bc422d8b (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
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/encrypt_paste"
        android:title="@string/btn_paste_encrypted_signed"
        android:icon="@drawable/ic_action_encrypt_paste_24dp"
        android:orderInCategory="1"
        android:visible="false"
        app:showAsAction="ifRoom" />

    <item
        android:id="@+id/encrypt_copy"
        android:title="@string/btn_copy_encrypted_signed"
        android:icon="@drawable/ic_action_encrypt_copy_24dp"
        android:orderInCategory="1"
        app:showAsAction="ifRoom" />

    <item
        android:id="@+id/encrypt_share"
        android:title="@string/btn_share_encrypted_signed"
        android:icon="@drawable/ic_action_encrypt_share_24dp"
        android:orderInCategory="1"
        app:showAsAction="ifRoom" />

    <item
        android:id="@+id/check_enable_compression"
        android:title="@string/label_enable_compression"
        android:orderInCategory="1"
        android:checked="true"
        android:checkable="true" />

    <!--<item-->
        <!--android:id="@+id/check_hidden_recipients"-->
        <!--android:title="@string/label_hidden_recipients"-->
        <!--android:checked="false"-->
        <!--android:checkable="true" />-->

</menu>