]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/activity_webview.xml
Add copyright and GPLv3+ licensing information. Create an About AlertDialog.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / activity_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 <RelativeLayout
20     android:id="@+id/rootRelativeLayout"
21     xmlns:android="http://schemas.android.com/apk/res/android"
22     android:layout_width="match_parent"
23     android:layout_height="match_parent">
24
25         <WebView
26             android:id="@+id/mainWebView"
27             android:layout_width="match_parent"
28             android:layout_height="match_parent"
29             android:focusable="true"
30             android:focusableInTouchMode="true" />
31
32         <!-- fullScreenVideoFrameLayout is used to display full screen videos.  It is initially android:visibility="gone" to hide it from view. -->
33         <FrameLayout
34             android:id="@+id/fullScreenVideoFrameLayout"
35             android:layout_width="match_parent"
36             android:layout_height="match_parent"
37             android:visibility="gone"
38             android:background="#000000" />
39
40 </RelativeLayout>