]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu_top_appbar.xml
ff5debf08c8d678a11cdc008947d9d9e7aa1943e
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / webview_navigation_menu_top_appbar.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-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 xmlns:android="http://schemas.android.com/apk/res/android" >
22
23     <item
24         android:id="@+id/clear_and_exit"
25         android:title="@string/clear_and_exit"
26         android:icon="@drawable/download_with_external_app_enabled"
27         android:orderInCategory="10" />
28
29     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
30     <group android:id="@+id/navigation_group" >
31         <item
32             android:id="@+id/home"
33             android:title="@string/home"
34             android:icon="@drawable/home"
35             android:orderInCategory="20" />
36
37         <item
38             android:id="@+id/back"
39             android:title="@string/back"
40             android:icon="@drawable/back"
41             android:orderInCategory="30" />
42
43         <item
44             android:id="@+id/forward"
45             android:title="@string/forward"
46             android:icon="@drawable/forward"
47             android:orderInCategory="40" />
48
49         <item
50             android:id="@+id/history"
51             android:title="@string/history"
52             android:icon="@drawable/history"
53             android:orderInCategory="50" />
54
55         <item
56             android:id="@+id/open"
57             android:title="@string/open"
58             android:icon="@drawable/proxy_enabled"
59             android:orderInCategory="60" />
60     </group>
61
62     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
63     <group android:id="@+id/features_group" >
64         <item
65             android:id="@+id/requests"
66             android:title="@string/requests"
67             android:icon="@drawable/block_ads_enabled"
68             android:orderInCategory="70" />
69
70         <item
71             android:id="@+id/downloads"
72             android:title="@string/downloads"
73             android:icon="@drawable/download"
74             android:orderInCategory="80" />
75     </group>
76
77     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
78     <group android:id="@+id/settings_group" >
79         <item
80             android:id="@+id/domains"
81             android:title="@string/domains"
82             android:icon="@drawable/domains"
83             android:orderInCategory="90" />
84
85         <item
86             android:id="@+id/settings"
87             android:title="@string/settings"
88             android:icon="@drawable/settings"
89             android:orderInCategory="100" />
90
91         <item
92             android:id="@+id/import_export"
93             android:title="@string/import_export"
94             android:icon="@drawable/import_export"
95             android:orderInCategory="110" />
96
97         <item
98             android:id="@+id/logcat"
99             android:title="@string/logcat"
100             android:icon="@drawable/clear_logcat_enabled"
101             android:orderInCategory="120" />
102     </group>
103
104     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
105     <group android:id="@+id/info_group" >
106         <item
107             android:id="@+id/guide"
108             android:title="@string/guide"
109             android:icon="@drawable/guide"
110             android:orderInCategory="130" />
111
112         <item
113             android:id="@+id/about"
114             android:title="@string/about"
115             android:icon="@drawable/about"
116             android:orderInCategory="140" />
117     </group>
118 </menu>