2020-05-23 23:07:52 +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">
|
|
|
|
|
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/action_select_none"
|
|
|
|
|
android:icon="@drawable/ic_select_none_24dp"
|
|
|
|
|
android:title="@string/select_none"
|
2020-05-29 05:31:50 +02:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-05-23 23:07:52 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/action_select_all"
|
|
|
|
|
android:icon="@drawable/ic_select_all_24dp"
|
|
|
|
|
android:title="@string/action_select_all"
|
2020-05-29 05:31:50 +02:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-05-23 23:07:52 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/action_match_enabled"
|
|
|
|
|
android:icon="@drawable/ic_explore_24dp"
|
|
|
|
|
android:title="@string/match_enabled_sources"
|
2020-05-29 05:31:50 +02:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-05-23 23:07:52 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/action_match_pinned"
|
|
|
|
|
android:icon="@drawable/ic_pin_24dp"
|
|
|
|
|
android:title="@string/match_pinned_sources"
|
2020-05-29 05:31:50 +02:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-05-23 23:07:52 +02:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
</menu>
|