22 lines
843 B
XML
22 lines
843 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<RelativeLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<android.support.v7.widget.Toolbar
|
||
|
|
android:id="@+id/toolbar"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:layout_alignParentTop="true"
|
||
|
|
android:background="?attr/colorPrimary"
|
||
|
|
android:minHeight="?attr/actionBarSize"
|
||
|
|
android:theme="?attr/actionBarTheme" />
|
||
|
|
|
||
|
|
<WebView
|
||
|
|
android:id="@+id/webview"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_below="@+id/toolbar"
|
||
|
|
android:layout_centerHorizontal="true" />
|
||
|
|
</RelativeLayout>
|