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"
|
|
|
|
tools:context="ml.docilealligator.infinityforreddit.MainActivity">
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_refresh_main_activity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:orderInCategory="2"
|
2018-09-24 11:03:57 +02:00
|
|
|
android:title="@string/action_refresh"
|
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
2018-12-29 06:38:18 +01:00
|
|
|
app:showAsAction="never" />
|
2019-02-22 06:34:24 +01:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_search_main_activity"
|
|
|
|
android:orderInCategory="1"
|
|
|
|
android:title="@string/action_search"
|
|
|
|
android:icon="@drawable/ic_search_white_24dp"
|
2019-02-26 14:56:51 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2018-09-24 11:03:57 +02:00
|
|
|
</menu>
|