2018-02-24 17:13:43 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-06 09:26:31 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-06 13:35:36 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-02-25 21:34:19 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-06-19 21:45:36 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2018-02-25 21:34:19 +01:00
|
|
|
<RelativeLayout
|
2018-02-24 17:13:43 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-02-25 21:34:19 +01:00
|
|
|
android:layout_height="match_parent">
|
2018-02-24 17:13:43 +01:00
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2019-04-06 13:35:36 +02:00
|
|
|
android:id="@+id/appbar"
|
2018-02-25 21:34:19 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
|
android:layout_alignParentTop="true"
|
2019-04-06 13:35:36 +02:00
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2019-04-06 13:35:36 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
|
android:theme="?attr/actionBarTheme"/>
|
|
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-02-25 21:34:19 +01:00
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
|
android:id="@+id/webview"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-04-06 13:35:36 +02:00
|
|
|
android:layout_below="@+id/appbar"
|
2018-02-25 21:34:19 +01:00
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
|
</RelativeLayout>
|
2020-01-06 09:26:31 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|