Files
arcanechat-android/res/menu/conversation.xml
T
bjoern ab5c57736a re-add "Add Attachment" menu entry (#2094)
it was removed to have some less menu entries,
however, on recent discussions,
it turns out clearer and clearte that this will break some workflows
(writing text first, then adding attachment).

i just had a look at other "large" messengers -
all of them support "write text, then add attachment" -
as well as our iOS and Desktop apps.
also, this order seems to be pretty normal when it comes to "E-Mail".

all in all,
i think, we should not sacrify this workflow just to save one menu entry.

at some point,
maybe we want to have the "Attach" button always visible left of the input bar
as most other messengers do (as well as iOS and Desktop),
however, this is a larger thing and also has its drawbacks on smaller screens.

so, just leave things as is seems not to be the worse idea here.

the "View Profile" menu entry, however stays, removed,
so, there is some cleanup.
2021-10-27 10:42:53 +02:00

46 lines
1.5 KiB
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/search"
android:id="@+id/menu_search_chat"
app:actionViewClass="androidx.appcompat.widget.SearchView"
app:showAsAction="collapseActionView|never" />
<item android:title="0/0"
android:id="@+id/menu_search_counter"
android:visible="false"
app:showAsAction="always"/>
<item android:title="@string/back"
android:id="@+id/menu_search_up"
android:icon="@drawable/ic_search_up"
android:visible="false"
app:showAsAction="always"/>
<item android:title="@string/next"
android:id="@+id/menu_search_down"
android:icon="@drawable/ic_search_down"
android:visible="false"
app:showAsAction="always"/>
<item android:id="@+id/menu_ephemeral_messages"
android:title="@string/ephemeral_messages" />
<item android:title="@string/menu_mute"
android:id="@+id/menu_mute_notifications"/>
<item android:id="@+id/menu_videochat_invite"
android:title="@string/videochat" />
<item android:id="@+id/menu_show_map"
android:title="@string/menu_show_map"
android:icon="@drawable/ic_map_white_24dp"
app:showAsAction="ifRoom" />
<item android:title="@string/menu_add_attachment"
android:id="@+id/menu_add_attachment" />
</menu>