2018-09-24 11:03:57 +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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-08-07 17:28:02 +02:00
|
|
|
tools:application="ml.docilealligator.infinityforreddit.MainActivity">
|
2019-06-08 02:01:31 +02:00
|
|
|
<item
|
2019-09-14 05:11:39 +02:00
|
|
|
android:id="@+id/action_subscriptions_main_activity"
|
2019-06-08 02:01:31 +02:00
|
|
|
android:orderInCategory="1"
|
2019-09-14 05:11:39 +02:00
|
|
|
android:title="@string/action_subscriptions"
|
|
|
|
android:icon="@drawable/ic_outline_check_circle_outline_white_24px"
|
|
|
|
app:showAsAction="ifRoom"
|
|
|
|
android:visible="false"/>
|
2019-07-26 04:50:32 +02:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_search_main_activity"
|
|
|
|
android:orderInCategory="2"
|
|
|
|
android:title="@string/action_search"
|
2019-06-08 02:01:31 +02:00
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
2018-09-24 11:03:57 +02:00
|
|
|
<item
|
2019-09-14 05:11:39 +02:00
|
|
|
android:id="@+id/action_sort_main_activity"
|
2019-07-26 04:50:32 +02:00
|
|
|
android:orderInCategory="3"
|
2019-09-14 05:11:39 +02:00
|
|
|
android:title="@string/action_sort"
|
|
|
|
android:icon="@drawable/ic_outline_sort_24px"
|
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_refresh_main_activity"
|
|
|
|
android:orderInCategory="4"
|
2018-09-24 11:03:57 +02:00
|
|
|
android:title="@string/action_refresh"
|
2018-12-29 06:38:18 +01:00
|
|
|
app:showAsAction="never" />
|
2019-02-22 06:34:24 +01:00
|
|
|
|
|
|
|
<item
|
2019-06-08 02:01:31 +02:00
|
|
|
android:id="@+id/action_lazy_mode_main_activity"
|
2019-09-14 05:11:39 +02:00
|
|
|
android:orderInCategory="5"
|
2019-06-08 02:01:31 +02:00
|
|
|
android:title="@string/action_start_lazy_mode"
|
|
|
|
app:showAsAction="never" />
|
2018-09-24 11:03:57 +02:00
|
|
|
</menu>
|