mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
2e9f7e58f2
* add 'Archived Chats' menu entry the menu entry is at the place where the 'Contact Requests' were before - that way, ppl may find existing contact requests easier. moreover, it is now possible to access 'Archived Chats' without endless scrolling ;) * for archived requests, show both tags * show a hint when 'Archived Chats' is empty * contact requests do not display unread count; do not retrieve it and do not show text in bold
31 lines
953 B
XML
31 lines
953 B
XML
<?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:title="@string/qr_code"
|
|
android:id="@+id/menu_qr"
|
|
android:icon="@drawable/ic_ab_qr"
|
|
app:showAsAction="always"/>
|
|
|
|
<item android:title="@string/menu_new_chat"
|
|
android:id="@+id/menu_new_chat" />
|
|
|
|
<item android:title="@string/chat_archived_chats_title"
|
|
android:id="@+id/menu_archived_chats" />
|
|
|
|
<item android:title="@string/menu_show_global_map"
|
|
android:id="@+id/menu_global_map"
|
|
android:visible="false"
|
|
/>
|
|
|
|
<item android:title="@string/menu_settings"
|
|
android:id="@+id/menu_settings" />
|
|
|
|
<item android:title="@string/menu_help"
|
|
android:id="@+id/menu_help" />
|
|
|
|
<item android:title="@string/switch_account"
|
|
android:id="@+id/menu_switch_account" />
|
|
|
|
</menu>
|