2020-06-12 06:26:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-10 17:30:16 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2020-06-12 06:26:33 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_help"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:icon="@drawable/ic_help_24dp"
|
2020-06-12 06:26:33 +00:00
|
|
|
android:title="@string/help"
|
2024-04-04 09:38:27 +00:00
|
|
|
app:showAsAction="ifRoom" />
|
2020-07-10 17:30:16 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_goto_chat"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:icon="@drawable/ic_forum_24dp"
|
2024-04-05 05:53:19 +00:00
|
|
|
android:title="@string/switch_to_chat"
|
2024-04-04 09:38:27 +00:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_switch_to_video"
|
2022-11-28 10:39:26 +00:00
|
|
|
android:title="@string/switch_to_video"
|
2024-04-04 09:38:27 +00:00
|
|
|
app:showAsAction="never" />
|
2020-06-12 06:26:33 +00:00
|
|
|
</menu>
|