]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu_bottom_appbar.xml
Invert the items in the navigation menu when using a bottom appbar. https://redmine...
[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-2021 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 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_day"
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/logcat"
38             android:title="@string/logcat"
39             android:icon="@drawable/bug"
40             android:orderInCategory="30" />
41
42         <item
43             android:id="@+id/import_export"
44             android:title="@string/import_export"
45             android:icon="@drawable/import_export"
46             android:orderInCategory="40" />
47
48         <item
49             android:id="@+id/settings"
50             android:title="@string/settings"
51             android:icon="@drawable/settings"
52             android:orderInCategory="50" />
53
54         <item
55             android:id="@+id/domains"
56             android:title="@string/domains"
57             android:icon="@drawable/domains_day"
58             android:orderInCategory="60" />
59     </group>
60
61     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
62     <group android:id="@+id/features_group" >
63         <item
64             android:id="@+id/downloads"
65             android:title="@string/downloads"
66             android:icon="@drawable/downloads_enabled_day"
67             android:orderInCategory="70" />
68
69         <item
70             android:id="@+id/requests"
71             android:title="@string/requests"
72             android:icon="@drawable/block_ads_enabled_day"
73             android:orderInCategory="80" />
74     </group>
75
76     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
77     <group android:id="@+id/navigation_group" >
78         <item
79             android:id="@+id/open"
80             android:title="@string/open"
81             android:icon="@drawable/proxy_enabled_day"
82             android:orderInCategory="90" />
83
84         <item
85             android:id="@+id/history"
86             android:title="@string/history"
87             android:icon="@drawable/history"
88             android:orderInCategory="100" />
89
90         <item
91             android:id="@+id/forward"
92             android:title="@string/forward"
93             android:icon="@drawable/forward"
94             android:orderInCategory="110" />
95
96         <item
97             android:id="@+id/back"
98             android:title="@string/back"
99             android:icon="@drawable/back"
100             android:orderInCategory="120" />
101
102         <item
103             android:id="@+id/home"
104             android:title="@string/home"
105             android:icon="@drawable/home_enabled_day"
106             android:orderInCategory="130" />
107     </group>
108
109     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
110     <group android:id="@+id/clear_and_exit_group" >
111         <item
112             android:id="@+id/clear_and_exit"
113             android:title="@string/clear_and_exit"
114             android:icon="@drawable/download_with_external_app_enabled_day"
115             android:orderInCategory="140" />
116     </group>
117 </menu>