22 lines
682 B
XML
22 lines
682 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".WebdokuActivity">
|
|
|
|
|
|
|
|
<WebView
|
|
android:layout_width="match_parent"
|
|
android:id="@+id/webView1"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:theme="@style/AppTheme"/>
|
|
|
|
|
|
</RelativeLayout> |