]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/menu/navigation_menu_top_appbar.xml
Populate the permissions menu entry.
[PrivacyCell.git] / app / src / main / res / menu / navigation_menu_top_appbar.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2021 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
7
8   Privacy Cell 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 Cell 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/permissions"
24         android:title="@string/permissions"
25         android:icon="@drawable/permissions"
26         android:orderInCategory="10" />
27
28     <item
29         android:id="@+id/privacy_policy"
30         android:title="@string/privacy_policy"
31         android:icon="@drawable/secure_5g_nr_sa"
32         android:orderInCategory="20" />
33
34     <item
35         android:id="@+id/changelog"
36         android:title="@string/changelog"
37         android:icon="@drawable/secure_5g_nr_sa"
38         android:orderInCategory="30" />
39
40     <item
41         android:id="@+id/licenses"
42         android:title="@string/licenses"
43         android:icon="@drawable/secure_5g_nr_sa"
44         android:orderInCategory="40" />
45
46     <item
47         android:id="@+id/contributors"
48         android:title="@string/contributors"
49         android:icon="@drawable/secure_5g_nr_sa"
50         android:orderInCategory="50" />
51
52     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
53     <group android:id="@+id/links" >
54         <item
55             android:id="@+id/news"
56             android:title="@string/news"
57             android:icon="@drawable/secure_5g_nr_sa"
58             android:orderInCategory="60" />
59
60         <item
61             android:id="@+id/roadmap"
62             android:title="@string/roadmap"
63             android:icon="@drawable/secure_5g_nr_sa"
64             android:orderInCategory="70" />
65
66         <item
67             android:id="@+id/bug_tracker"
68             android:title="@string/bug_tracker"
69             android:icon="@drawable/secure_5g_nr_sa"
70             android:orderInCategory="80" />
71
72         <item
73             android:id="@+id/forum"
74             android:title="@string/forum"
75             android:icon="@drawable/secure_5g_nr_sa"
76             android:orderInCategory="90" />
77     </group>
78
79     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
80     <group android:id="@+id/donation_group" >
81         <item
82             android:id="@+id/donations"
83             android:title="@string/donations"
84             android:icon="@drawable/secure_5g_nr_sa"
85             android:orderInCategory="100" />
86     </group>
87 </menu>