mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 16:45:09 -05:00
15e5cb4eaf
3. Each remote Store (IMAP, POP3, WebDAV) can provide indications to the higher level classes as to whether copy and move are implemented. Currently, copy and move are only provided by ImapStore.java. When the facilities are not available, the user interface suppresses the menu options. The available destination folders can be configured using folder classes. Copy results in null message bodies in the destination copy of the message until the next sync. This is a problem that occurred with deletes previously, and is likely a fault with the copyMessages method of LocalStore.java. Utilizes a modified version of the ChooseFolder.java Activity that debuachedsloth contributed in a patch attached to Issue 285 on 16 Feb 2008.
54 lines
1.6 KiB
XML
54 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/reply"
|
|
android:alphabeticShortcut="r"
|
|
android:title="@string/reply_action"
|
|
android:icon="@drawable/ic_menu_reply"
|
|
/>
|
|
<item
|
|
android:id="@+id/reply_all"
|
|
android:alphabeticShortcut="a"
|
|
android:title="@string/reply_all_action"
|
|
android:icon="@drawable/ic_menu_reply_all"
|
|
/>
|
|
<item
|
|
android:id="@+id/forward"
|
|
android:alphabeticShortcut="f"
|
|
android:title="@string/forward_action"
|
|
android:icon="@drawable/ic_menu_forward_mail"
|
|
/>
|
|
<item
|
|
android:id="@+id/mark_as_unread"
|
|
android:alphabeticShortcut="u"
|
|
android:title="@string/mark_as_unread_action"
|
|
android:icon="@drawable/ic_menu_mark"
|
|
/>
|
|
<item
|
|
android:id="@+id/delete"
|
|
android:alphabeticShortcut="q"
|
|
android:title="@string/delete_action"
|
|
android:icon="@drawable/ic_menu_delete"
|
|
/>
|
|
<item
|
|
android:id="@+id/flag"
|
|
android:alphabeticShortcut="s"
|
|
android:title="@string/flag_action"
|
|
android:icon="@drawable/ic_menu_forward_mail"
|
|
/>
|
|
<item
|
|
android:id="@+id/send_alternate"
|
|
android:alphabeticShortcut="s"
|
|
android:title="@string/send_alternate_action"
|
|
android:icon="@drawable/ic_menu_forward_mail"
|
|
/>
|
|
<item
|
|
android:id="@+id/move"
|
|
android:title="@string/move_action"
|
|
/>
|
|
<item
|
|
android:id="@+id/copy"
|
|
android:title="@string/copy_action"
|
|
/>
|
|
</menu>
|