]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/menu/navigation_menu_top_appbar.xml
Release 1.3.
[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 Cell.  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/settings"
24         android:title="@string/settings"
25         android:icon="@drawable/settings"
26         android:orderInCategory="10" />
27
28     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
29     <group android:id="@+id/dialogs" >
30         <item
31             android:id="@+id/permissions"
32             android:title="@string/permissions"
33             android:icon="@drawable/permissions"
34             android:orderInCategory="20" />
35
36         <item
37             android:id="@+id/privacy_policy"
38             android:title="@string/privacy_policy"
39             android:icon="@drawable/privacy_policy"
40             android:orderInCategory="30" />
41
42         <item
43             android:id="@+id/changelog"
44             android:title="@string/changelog"
45             android:icon="@drawable/changelog"
46             android:orderInCategory="40" />
47
48         <item
49             android:id="@+id/licenses"
50             android:title="@string/licenses"
51             android:icon="@drawable/licenses"
52             android:orderInCategory="50" />
53
54         <item
55             android:id="@+id/contributors"
56             android:title="@string/contributors"
57             android:icon="@drawable/contributors"
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/links" >
63         <item
64             android:id="@+id/news"
65             android:title="@string/news"
66             android:icon="@drawable/news"
67             android:orderInCategory="70" />
68
69         <item
70             android:id="@+id/roadmap"
71             android:title="@string/roadmap"
72             android:icon="@drawable/roadmap"
73             android:orderInCategory="80" />
74
75         <item
76             android:id="@+id/bug_tracker"
77             android:title="@string/bug_tracker"
78             android:icon="@drawable/bug_tracker"
79             android:orderInCategory="90" />
80
81         <item
82             android:id="@+id/forum"
83             android:title="@string/forum"
84             android:icon="@drawable/forum"
85             android:orderInCategory="100" />
86     </group>
87
88     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
89     <group android:id="@+id/donation_group" >
90         <item
91             android:id="@+id/donations"
92             android:title="@string/donations"
93             android:icon="@drawable/donations"
94             android:orderInCategory="110" />
95     </group>
96 </menu>