2017-08-03 14:38:47 +02: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">
|
2017-09-15 19:51:41 +02:00
|
|
|
<item
|
2018-09-05 17:08:57 +02:00
|
|
|
android:id="@+id/action_direct_message"
|
|
|
|
android:title="@string/direct_message"
|
|
|
|
android:icon="@drawable/ic_mail_outline_toot"
|
2017-10-15 08:45:37 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-10-05 19:22:58 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_open_browser"
|
2017-10-15 08:45:37 +02:00
|
|
|
android:title="@string/action_open_in_web"
|
2017-10-28 17:59:50 +02:00
|
|
|
android:icon="@drawable/ic_open_with"
|
2017-10-15 08:45:37 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-10-28 12:30:40 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mute"
|
|
|
|
android:title="@string/more_action_1"
|
2017-10-28 17:59:50 +02:00
|
|
|
android:icon="@drawable/ic_volume_mute"
|
2017-10-28 12:30:40 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_block"
|
|
|
|
android:title="@string/more_action_2"
|
2017-10-28 14:54:28 +02:00
|
|
|
android:icon="@drawable/ic_block"
|
2017-10-28 12:30:40 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
2017-11-05 08:06:23 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_mention"
|
|
|
|
android:title="@string/more_action_7"
|
|
|
|
android:icon="@drawable/ic_chat_bubble_outline"
|
|
|
|
app:showAsAction="ifRoom" />
|
2019-03-01 18:50:52 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_filter"
|
|
|
|
android:visible="false"
|
|
|
|
android:title="@string/filter_timeline_with_a_tag"
|
|
|
|
app:showAsAction="ifRoom" />
|
2018-09-04 19:27:26 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_hide_boost"
|
|
|
|
android:title="@string/hide_boost"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<!-- <item
|
|
|
|
android:id="@+id/action_block_domain"
|
|
|
|
android:title="@string/hide_everything"
|
|
|
|
app:showAsAction="ifRoom" /> -->
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_endorse"
|
|
|
|
android:title="@string/endorse"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
2018-09-01 09:08:41 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_follow_instance"
|
|
|
|
android:title="@string/follow_instance"
|
|
|
|
android:icon="@drawable/ic_public_world"
|
|
|
|
app:showAsAction="ifRoom" />
|
2018-11-05 18:22:39 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_block_instance"
|
|
|
|
android:title="@string/block_domain"
|
|
|
|
android:icon="@drawable/ic_block"
|
|
|
|
app:showAsAction="ifRoom" />
|
2017-08-03 14:38:47 +02:00
|
|
|
</menu>
|