mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 23:55:08 -04:00
db2b177a79
more obvious to end users. Split out the "choose identity" icon from the "cc" icon, though they're still the same image, at least they're logically separate
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/send_as"
|
|
android:icon="@drawable/ic_menu_identity"
|
|
/>
|
|
<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>
|