]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu_top_appbar.xml
First wrong button text in View Headers in night theme. https://redmine.stoutner...
[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-2023 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/scroll_to_bottom"
51             android:title="@string/scroll_to_bottom"
52             android:icon="@drawable/move_down_enabled"
53             android:orderInCategory="50" />
54
55         <item
56             android:id="@+id/history"
57             android:title="@string/history"
58             android:icon="@drawable/history"
59             android:orderInCategory="60" />
60
61         <item
62             android:id="@+id/open"
63             android:title="@string/open"
64             android:icon="@drawable/proxy_enabled"
65             android:orderInCategory="70" />
66     </group>
67
68     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
69     <group android:id="@+id/features_group" >
70         <item
71             android:id="@+id/requests"
72             android:title="@string/requests"
73             android:icon="@drawable/block_ads_enabled"
74             android:orderInCategory="80" />
75
76         <item
77             android:id="@+id/downloads"
78             android:title="@string/downloads"
79             android:icon="@drawable/download"
80             android:orderInCategory="90" />
81     </group>
82
83     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
84     <group android:id="@+id/settings_group" >
85         <item
86             android:id="@+id/domains"
87             android:title="@string/domains"
88             android:icon="@drawable/domains"
89             android:orderInCategory="100" />
90
91         <item
92             android:id="@+id/settings"
93             android:title="@string/settings"
94             android:icon="@drawable/settings"
95             android:orderInCategory="110" />
96
97         <item
98             android:id="@+id/import_export"
99             android:title="@string/import_export"
100             android:icon="@drawable/import_export"
101             android:orderInCategory="120" />
102
103         <item
104             android:id="@+id/logcat"
105             android:title="@string/logcat"
106             android:icon="@drawable/clear_logcat_enabled"
107             android:orderInCategory="130" />
108
109         <item
110             android:id="@+id/webview_devtools"
111             android:title="@string/webview_devtools"
112             android:icon="@drawable/webview_devtools"
113             android:orderInCategory="140" />
114     </group>
115
116     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
117     <group android:id="@+id/info_group" >
118         <item
119             android:id="@+id/guide"
120             android:title="@string/guide"
121             android:icon="@drawable/guide"
122             android:orderInCategory="150" />
123
124         <item
125             android:id="@+id/about"
126             android:title="@string/about"
127             android:icon="@drawable/about_blue"
128             android:orderInCategory="160" />
129     </group>
130 </menu>