diff --git a/activity_webview.xml b/activity_webview.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ca75202d5f728306f2e804d89a5d696c2566694 --- /dev/null +++ b/activity_webview.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".Webview"> + <WebView + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:id="@+id/webView" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" + android:layout_alignParentBottom="true" + android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" /> +</RelativeLayout> \ No newline at end of file