]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/menu_webview.xml
Add copyright and GPLv3+ licensing information. Create an About AlertDialog.
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / menu_webview.xml
1 <!--
2   Copyright 2015 Soren Stoutner
3
4   This file is part of Privacy Browser <https://privacybrowser.stoutner.com/>.
5
6   Privacy Browser is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Privacy Browser is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
18
19 <menu
20     xmlns:android="http://schemas.android.com/apk/res/android"
21     xmlns:app="http://schemas.android.com/apk/res-auto"
22     xmlns:tools="http://schemas.android.com/tools"
23     tools:context=".Webview">
24
25     <item
26         android:id="@+id/home"
27         android:title="@string/home"
28         android:orderInCategory="10"
29         android:icon="@drawable/ic_home_black_24dp"
30         app:showAsAction="never" />
31
32     <item
33         android:id="@+id/refresh"
34         android:title="@string/refresh"
35         android:orderInCategory="20"
36         app:showAsAction="never" />
37
38     <item
39         android:id="@+id/back"
40         android:title="@string/back"
41         android:orderInCategory="30"
42         android:icon="@drawable/ic_back"
43         app:showAsAction="never" />
44
45     <item
46         android:id="@+id/forward"
47         android:title="@string/forward"
48         android:orderInCategory="40"
49         android:icon="@drawable/ic_forward"
50         app:showAsAction="never" />
51
52     <!-- tools:targetApi="11" is required because copy and paste was not available on earlier version of Android. -->
53     <item
54         android:id="@+id/copyURL"
55         android:title="@string/copy_URL"
56         android:orderInCategory="50"
57         tools:targetApi="11"
58         app:showAsAction="never" />
59
60     <!-- tools:targetApi="11" is required because copy and paste was not available on earlier version of Android. -->
61     <item
62         android:id="@+id/pasteURL"
63         android:title="@string/paste_URL"
64         android:orderInCategory="60"
65         tools:targetApi="11"
66         app:showAsAction="never" />
67
68     <item
69         android:id="@+id/shareURL"
70         android:title="@string/share_URL"
71         android:orderInCategory="70"
72         app:showAsAction="never" />
73
74     <item
75         android:id="@+id/addToHomescreen"
76         android:title="@string/add_to_home_screen"
77         android:orderInCategory="80"
78         app:showAsAction="never" />
79
80     <item
81         android:id="@+id/downloads"
82         android:title="@string/downloads"
83         android:orderInCategory="90"
84         app:showAsAction="never" />
85
86     <item
87         android:id="@+id/about"
88         android:title="@string/about"
89         android:orderInCategory="100"
90         app:showAsAction="never" />
91 </menu>