aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/menu/encrypt_text_activity.xml
blob: 5a262fdd89404ef6d6d0857a3cdcd46825c941bb (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
<?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_copy"
        android:title="@string/btn_copy_encrypted_signed"
        android:icon="@drawable/ic_action_encrypt_copy_24dp"
        app:showAsAction="always" />

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

    <item
        android:id="@+id/check_use_symmetric"
        android:title="@string/label_symmetric"
        android:checkable="true" />

    <item
        android:id="@+id/check_enable_compression"
        android:title="@string/label_enable_compression"
        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>