blob: 1b64c083f30347f9ed1adb84e7eae615854deda1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!--
~ Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_search"
android:icon="@drawable/ic_search_24dp"
android:title="@string/action_search"
app:actionViewClass="androidx.appcompat.widget.SearchView"
app:showAsAction="always|collapseActionView" />
<item
android:id="@+id/git_sync"
android:title="@string/git_sync" />
<item
android:id="@+id/git_pull"
android:title="@string/git_pull" />
<item
android:id="@+id/git_push"
android:title="@string/git_push" />
<item
android:id="@+id/refresh"
android:title="@string/refresh_list" />
<item
android:id="@+id/user_pref"
android:orderInCategory="100"
android:title="@string/action_settings" />
</menu>
|