]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu.xml
Add a logcat activity. https://redmine.stoutner.com/issues/264
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / webview_navigation_menu.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-2019 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser 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 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.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <menu
22     xmlns:android="http://schemas.android.com/apk/res/android">
23     <item
24         android:id="@+id/home"
25         android:title="@string/home"
26         android:icon="@drawable/home_enabled_light"
27         android:orderInCategory="10" />
28
29     <item
30         android:id="@+id/back"
31         android:title="@string/back"
32         android:icon="@drawable/back"
33         android:orderInCategory="20" />
34
35     <item
36         android:id="@+id/forward"
37         android:title="@string/forward"
38         android:icon="@drawable/forward"
39         android:orderInCategory="30" />
40
41     <item
42         android:id="@+id/history"
43         android:title="@string/history"
44         android:icon="@drawable/history"
45         android:orderInCategory="40" />
46
47     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
48     <group
49         android:id="@+id/features_group" >
50         <item
51             android:id="@+id/requests"
52             android:title="@string/requests"
53             android:icon="@drawable/block_ads_enabled_light"
54             android:orderInCategory="50" />
55
56         <item
57             android:id="@+id/downloads"
58             android:title="@string/downloads"
59             android:icon="@drawable/downloads_light"
60             android:orderInCategory="60" />
61     </group>
62
63     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
64     <group
65         android:id="@+id/settings_group" >
66         <item
67             android:id="@+id/domains"
68             android:title="@string/domains"
69             android:icon="@drawable/domains"
70             android:orderInCategory="70" />
71
72         <item
73             android:id="@+id/settings"
74             android:title="@string/settings"
75             android:icon="@drawable/settings"
76             android:orderInCategory="80" />
77
78         <item
79             android:id="@+id/import_export"
80             android:title="@string/import_export"
81             android:icon="@drawable/import_export_light"
82             android:orderInCategory="90" />
83
84         <item
85             android:id="@+id/logcat"
86             android:title="@string/logcat"
87             android:icon="@drawable/bug"
88             android:orderInCategory="100" />
89     </group>
90
91     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
92     <group
93         android:id="@+id/info_group" >
94         <item
95             android:id="@+id/guide"
96             android:title="@string/guide"
97             android:icon="@drawable/guide"
98             android:orderInCategory="110" />
99
100         <item
101             android:id="@+id/about"
102             android:title="@string/about"
103             android:icon="@drawable/about_light"
104             android:orderInCategory="120" />
105     </group>
106
107     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
108     <group
109         android:id="@+id/exit_group" >
110         <item
111             android:id="@+id/clear_and_exit"
112             android:title="@string/clear_and_exit"
113             android:icon="@drawable/open_with_external_app_enabled_light"
114             android:orderInCategory="130" />
115     </group>
116 </menu>