2019-07-26 17:02:20 +03:00
|
|
|
<?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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/resend_all"
|
|
|
|
android:icon="@drawable/ic_refresh_cw"
|
|
|
|
android:title="@string/room_prompt_resend"
|
|
|
|
android:visible="false"
|
|
|
|
app:showAsAction="never"
|
|
|
|
tools:visible="true" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/clear_all"
|
|
|
|
android:icon="@drawable/ic_trash"
|
|
|
|
android:title="@string/room_prompt_cancel"
|
|
|
|
android:visible="false"
|
|
|
|
app:showAsAction="never"
|
|
|
|
tools:visible="true" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/clear_message_queue"
|
|
|
|
android:title="@string/clear_timeline_send_queue"
|
2019-09-25 11:50:13 +03:00
|
|
|
android:visible="@bool/debug_mode"
|
2019-07-26 17:02:20 +03:00
|
|
|
app:showAsAction="never"
|
|
|
|
tools:visible="true" />
|
|
|
|
|
|
|
|
</menu>
|