summaryrefslogtreecommitdiff
path: root/main/src/ui/res/layout/webview_internal.xml
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/ui/res/layout/webview_internal.xml')
-rw-r--r--main/src/ui/res/layout/webview_internal.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/main/src/ui/res/layout/webview_internal.xml b/main/src/ui/res/layout/webview_internal.xml
new file mode 100644
index 00000000..f1bf17c8
--- /dev/null
+++ b/main/src/ui/res/layout/webview_internal.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?><!--
+ ~ Copyright (c) 2012-2020 Arne Schwabe
+ ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
+ -->
+
+<LinearLayout android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:orientation="vertical"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <TextView
+ android:id="@+id/url_textview"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ tools:text="https://foo.bar.baz" />
+
+ <WebView
+ android:id="@+id/internal_webview"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ />
+
+</LinearLayout>