summaryrefslogtreecommitdiff
path: root/main/src/ui/res/layout/webview_internal.xml
blob: f1bf17c8d709fe721d71344106a48c6282bd8916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>