]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/menu/navigation_menu_top_appbar.xml
Create a protocols activity. https://redmine.stoutner.com/issues/774
[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-2022 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     <item
29         android:id="@+id/protocols"
30         android:title="@string/protocols"
31         android:icon="@drawable/protocols"
32         android:orderInCategory="20" />
33
34     <item
35         android:id="@+id/logcat"
36         android:title="@string/logcat"
37         android:icon="@drawable/logcat"
38         android:orderInCategory="30" />
39
40     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
41     <group android:id="@+id/dialogs" >
42         <item
43             android:id="@+id/permissions"
44             android:title="@string/permissions"
45             android:icon="@drawable/permissions"
46             android:orderInCategory="40" />
47
48         <item
49             android:id="@+id/privacy_policy"
50             android:title="@string/privacy_policy"
51             android:icon="@drawable/privacy_policy"
52             android:orderInCategory="50" />
53
54         <item
55             android:id="@+id/changelog"
56             android:title="@string/changelog"
57             android:icon="@drawable/changelog"
58             android:orderInCategory="60" />
59
60         <item
61             android:id="@+id/licenses"
62             android:title="@string/licenses"
63             android:icon="@drawable/licenses"
64             android:orderInCategory="70" />
65
66         <item
67             android:id="@+id/contributors"
68             android:title="@string/contributors"
69             android:icon="@drawable/contributors"
70             android:orderInCategory="80" />
71     </group>
72
73     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
74     <group android:id="@+id/links" >
75         <item
76             android:id="@+id/news"
77             android:title="@string/news"
78             android:icon="@drawable/news"
79             android:orderInCategory="90" />
80
81         <item
82             android:id="@+id/roadmap"
83             android:title="@string/roadmap"
84             android:icon="@drawable/roadmap"
85             android:orderInCategory="100" />
86
87         <item
88             android:id="@+id/bug_tracker"
89             android:title="@string/bug_tracker"
90             android:icon="@drawable/bug_tracker"
91             android:orderInCategory="110" />
92
93         <item
94             android:id="@+id/forum"
95             android:title="@string/forum"
96             android:icon="@drawable/forum"
97             android:orderInCategory="120" />
98     </group>
99
100     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
101     <group android:id="@+id/donation_group" >
102         <item
103             android:id="@+id/donations"
104             android:title="@string/donations"
105             android:icon="@drawable/donations"
106             android:orderInCategory="130" />
107     </group>
108 </menu>