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