mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-05 07:55:17 +00:00
16 lines
596 B
XML
16 lines
596 B
XML
|
<?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/search_action"
|
||
|
android:icon="@drawable/ic_baseline_search_24"
|
||
|
app:showAsAction="ifRoom"
|
||
|
app:actionViewClass="androidx.appcompat.widget.SearchView"
|
||
|
android:title="@string/SearchToolbar_search"/>
|
||
|
|
||
|
<item android:id="@+id/path_action"
|
||
|
android:icon="@drawable/accent_dot"
|
||
|
android:title="@string/activity_path_title"
|
||
|
app:showAsAction="ifRoom"/>
|
||
|
|
||
|
|
||
|
</menu>
|