]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu.xml
Use the public download directory. https://redmine.stoutner.com/issues/224
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / webview_navigation_menu.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-2017 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/navigationGroup1" >
50
51         <item
52             android:id="@+id/downloads"
53             android:title="@string/downloads"
54             android:icon="@drawable/downloads_light"
55             android:orderInCategory="50" />
56
57         <item
58             android:id="@+id/domains"
59             android:title="@string/domains"
60             android:icon="@drawable/domains"
61             android:orderInCategory="60" />
62
63         <item
64             android:id="@+id/settings"
65             android:title="@string/settings"
66             android:icon="@drawable/settings"
67             android:orderInCategory="70" />
68     </group>
69
70     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
71     <group
72         android:id="@+id/navigationGroup2" >
73         <item
74             android:id="@+id/guide"
75             android:title="@string/guide"
76             android:icon="@drawable/guide"
77             android:orderInCategory="80" />
78
79         <item
80             android:id="@+id/about"
81             android:title="@string/about"
82             android:icon="@drawable/about_light"
83             android:orderInCategory="90" />
84     </group>
85
86     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
87     <group
88         android:id="@+id/navigationGroup3" >
89         <item
90             android:id="@+id/clearAndExit"
91             android:title="@string/clear_and_exit"
92             android:icon="@drawable/clear_and_exit"
93             android:orderInCategory="100" />
94     </group>
95 </menu>