Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".MainActivity" >
- <WebView
- android:id="@+id/webView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentLeft="true"
- android:layout_below="@+id/go" />
- <Button
- android:id="@+id/go"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:text="GO"
- android:onClick="go" />
- <EditText
- android:id="@+id/url"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBaseline="@+id/go"
- android:layout_alignBottom="@+id/go"
- android:layout_alignParentLeft="true"
- android:layout_toLeftOf="@+id/go"
- android:ems="10"
- android:singleLine="true"
- android:text="http://www." />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment