mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 08:35:08 -04:00
582c3f82b8
Thanks to dman13 for providing the work-around and analysing the bug. Fixes issue 1186
52 lines
1.5 KiB
XML
52 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/send"
|
|
android:alphabeticShortcut="s"
|
|
android:title="@string/send_action"
|
|
android:icon="@drawable/ic_menu_send"
|
|
/>
|
|
<item
|
|
android:id="@+id/add_cc_bcc"
|
|
android:alphabeticShortcut="c"
|
|
android:title="@string/add_cc_bcc_action"
|
|
android:icon="@drawable/ic_menu_cc"
|
|
/>
|
|
<item
|
|
android:id="@+id/add_attachment"
|
|
android:alphabeticShortcut="n"
|
|
android:title="@string/add_attachment_action"
|
|
android:icon="@drawable/ic_menu_attachment"
|
|
/>
|
|
<item
|
|
android:id="@+id/save"
|
|
android:alphabeticShortcut="d"
|
|
android:title="@string/save_draft_action"
|
|
android:icon="@drawable/ic_menu_save_draft"
|
|
/>
|
|
<item
|
|
android:id="@+id/discard"
|
|
android:alphabeticShortcut="q"
|
|
android:title="@string/discard_action"
|
|
android:icon="@drawable/ic_menu_close_clear_cancel"
|
|
/>
|
|
<item
|
|
android:id="@+id/choose_identity"
|
|
android:alphabeticShortcut="i"
|
|
android:title="@string/choose_identity"
|
|
android:icon="@drawable/ic_menu_cc"
|
|
/>
|
|
<item
|
|
android:id="@+id/add_attachment_image"
|
|
android:title="@string/add_attachment_action_image"
|
|
android:icon="@drawable/ic_menu_attachment"
|
|
android:visible="false"
|
|
/>
|
|
<item
|
|
android:id="@+id/add_attachment_video"
|
|
android:title="@string/add_attachment_action_video"
|
|
android:icon="@drawable/ic_menu_attachment"
|
|
android:visible="false"
|
|
/>
|
|
</menu>
|