2021-12-28 01:37:07 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-25 15:04:48 +05:30
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-11-12 21:52:13 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2021-12-28 01:37:07 +05:30
|
|
|
|
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-11-12 21:52:13 +05:30
|
|
|
app:showAsAction="ifRoom|collapseActionView" />
|
2022-07-31 18:44:39 +05:30
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
|
|
|
android:title="@string/settings"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<item
|
2023-01-18 00:02:19 +05:30
|
|
|
android:id="@+id/action_help"
|
|
|
|
android:title="@string/help"
|
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
|
|
|
|
2023-02-12 17:04:53 +05:30
|
|
|
<item
|
|
|
|
android:visible="false"
|
|
|
|
android:id="@+id/action_audio"
|
|
|
|
android:title="@string/audio_player"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2021-12-28 01:37:07 +05:30
|
|
|
</menu>
|