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