document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context="com.android_examples.com.webbrowser.MainActivity" >
  6.  
  7.  <Button
  8. android:id="@+id/button1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentRight="true"
  12. android:layout_alignParentTop="true"
  13. android:text="GO" />
  14.  
  15.  <EditText
  16. android:id="@+id/editText1"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_alignBottom="@+id/button1"
  20. android:layout_alignParentLeft="true"
  21. android:ems="10"
  22. android:hint="Type Your URL Here"/>
  23.  
  24.  <View
  25. android:id="@+id/view12"
  26. android:layout_width="wrap_content"
  27. android:layout_height="3dp"
  28. android:layout_alignBottom="@+id/button1"
  29. android:layout_alignParentLeft="true"
  30. android:background="#3bbdfa" />
  31.  
  32.  <WebView
  33. android:id="@+id/webView1"
  34. android:layout_width="match_parent"
  35. android:layout_height="match_parent"
  36. android:layout_below="@+id/editText1"
  37. android:layout_centerHorizontal="true" />
  38.  
  39.  <ProgressBar
  40. android:id="@+id/progressBar1"
  41. style="?android:attr/progressBarStyleLarge"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_centerHorizontal="true"
  45. android:layout_centerVertical="true" />
  46.  
  47. </RelativeLayout>
');