3dfabbbd0c
folders are sorted first by subject, then by date. Subject sorting is case insensitive and disregards leading re:, fw: and fwd: prefixes. Threading can be toggled via the T hotkey or the option menu. The icons could use improvement. Threading state is maintained during a run of K-9, among all accounts.
37 lines
1,019 B
XML
37 lines
1,019 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/refresh"
|
|
android:alphabeticShortcut="r"
|
|
android:title="@string/refresh_action"
|
|
android:icon="@drawable/ic_menu_refresh"
|
|
/>
|
|
<item
|
|
android:id="@+id/compose"
|
|
android:alphabeticShortcut="c"
|
|
android:title="@string/compose_action"
|
|
android:icon="@drawable/ic_menu_compose"
|
|
/>
|
|
<item
|
|
android:id="@+id/empty_trash"
|
|
android:alphabeticShortcut="e"
|
|
android:title="@string/empty_trash_action"
|
|
android:icon="@drawable/ic_menu_delete"
|
|
/>
|
|
<item
|
|
android:id="@+id/accounts"
|
|
android:title="@string/accounts_action"
|
|
android:icon="@drawable/ic_menu_account_list"
|
|
/>
|
|
<item
|
|
android:id="@+id/account_settings"
|
|
android:title="@string/account_settings_action"
|
|
android:icon="@android:drawable/ic_menu_preferences"
|
|
/>
|
|
<item
|
|
android:id="@+id/thread"
|
|
android:title="@string/thread_action"
|
|
android:icon="@drawable/ic_menu_thread"
|
|
/>
|
|
|
|
</menu>
|