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.    android:paddingBottom="@dimen/activity_vertical_margin"
  6.    android:paddingLeft="@dimen/activity_horizontal_margin"
  7.    android:paddingRight="@dimen/activity_horizontal_margin"
  8.    android:paddingTop="@dimen/activity_vertical_margin"
  9.    tools:context=".MainActivity" >
  10.  
  11.     <EditText
  12.         android:id="@+id/qrInput"
  13.         android:layout_width="match_parent"
  14.         android:layout_height="wrap_content" android:ems="10" />
  15.  
  16.     <Button
  17.        android:id="@+id/button1"
  18.        android:layout_width="wrap_content"
  19.        android:layout_height="wrap_content"
  20.        android:layout_below="@+id/qrInput"
  21.        android:layout_centerHorizontal="true"
  22.        android:text="Generate" />
  23.    
  24.      <WebView
  25.         android:id="@+id/mainWebView"
  26.         android:layout_width="fill_parent"
  27.         android:layout_height="fill_parent"
  28.         android:layout_below="@+id/button1" />
  29.  
  30. </RelativeLayout>
');