]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/bookmarks_context_menu.xml
Update the URL in the copyright header. https://redmine.stoutner.com/issues/796
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / bookmarks_context_menu.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2017,2020,2022 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
7
8   Privacy Browser Android is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser Android is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <menu
22     xmlns:android="http://schemas.android.com/apk/res/android"
23     xmlns:app="http://schemas.android.com/apk/res-auto">
24
25     <item
26         android:id="@+id/move_bookmark_up"
27         android:title="@string/move_up"
28         android:orderInCategory="10"
29         app:showAsAction="ifRoom" />
30
31     <item
32         android:id="@+id/move_bookmark_down"
33         android:title="@string/move_down"
34         android:orderInCategory="20"
35         app:showAsAction="ifRoom" />
36
37     <!-- `android:iconTint` can be used once API >= 26 instead of including a separate drawable for each theme. -->
38     <item
39         android:id="@+id/move_to_folder"
40         android:title="@string/move_to_folder"
41         android:orderInCategory="30"
42         android:icon="?attr/moveToFolderIcon"
43         app:showAsAction="ifRoom" />
44
45     <!-- `android:iconTint` can be used once API >= 26 instead of including a separate drawable for each theme. -->
46     <item
47         android:id="@+id/edit_bookmark"
48         android:title="@string/edit"
49         android:orderInCategory="40"
50         android:icon="?attr/editIcon"
51         app:showAsAction="ifRoom" />
52
53     <!-- `android:iconTint` can be used once API >= 26 instead of including a separate drawable for each theme. -->
54     <item
55         android:id="@+id/delete_bookmark"
56         android:title="@string/delete"
57         android:orderInCategory="50"
58         android:icon="?attr/deleteIcon"
59         app:showAsAction="ifRoom" />
60
61     <!-- `android:iconTint` can be used once API >= 26 instead of including a separate drawable for each theme. -->
62     <item
63         android:id="@+id/context_menu_select_all_bookmarks"
64         android:title="@string/select_all"
65         android:orderInCategory="60"
66         android:icon="?attr/selectAllIcon"
67         app:showAsAction="ifRoom" />
68 </menu>