2021-12-28 01:37:07 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-21 13:46:59 +05:30
|
|
|
<menu xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-28 01:37:07 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
2022-06-03 22:19:48 +05:30
|
|
|
<item
|
2021-12-28 01:37:07 +05:30
|
|
|
android:id="@+id/action_search"
|
2022-08-01 12:47:36 +05:30
|
|
|
android:focusableInTouchMode="true"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:icon="@drawable/ic_search"
|
|
|
|
android:title="@string/search_hint"
|
2022-08-01 02:11:15 +05:30
|
|
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
2022-08-21 13:46:59 +05:30
|
|
|
app:showAsAction="always|collapseActionView"
|
|
|
|
tools:ignore="AlwaysShowAction" />
|
2022-07-31 18:44:39 +05:30
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
|
|
|
android:title="@string/settings"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<item
|
2022-08-04 11:52:54 +05:30
|
|
|
android:id="@+id/action_community"
|
|
|
|
android:title="@string/community"
|
2022-07-31 18:44:39 +05:30
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<item
|
2022-08-04 11:52:54 +05:30
|
|
|
android:id="@+id/action_about"
|
|
|
|
android:title="@string/about"
|
2022-07-31 18:44:39 +05:30
|
|
|
app:showAsAction="never" />
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2021-12-28 01:37:07 +05:30
|
|
|
</menu>
|