1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    xmlns:tools="http://schemas.android.com/tools"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    tools:context="w1.fi.wpadebug.InputUri">
8	<LinearLayout
9	    android:layout_width="match_parent"
10	    android:gravity="center"
11	    android:orientation="vertical"
12	    android:layout_margin="30dp"
13	    android:layout_height="wrap_content">
14
15		<EditText
16		    android:id="@+id/edit_uri"
17		    android:layout_width="match_parent"
18		    android:layout_height="130dp" />
19
20		<Button
21		    android:id="@+id/submit_uri"
22		    android:layout_width="wrap_content"
23		    android:text="Submit"
24		    android:layout_height="wrap_content" />
25	</LinearLayout>
26</LinearLayout>
27