Guest User

Untitled

a guest
Feb 4th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.40 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:ads="http://schemas.android.com/apk/res-auto"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    tools:context="com.example.softbzero.xenoxd.MainActivity"
  7.    android:background="#FF4081">
  8.  
  9.  
  10.     <WebView xmlns:android="http://schemas.android.com/apk/res/android"
  11.        android:layout_width="fill_parent"
  12.        android:layout_height="fill_parent"
  13.        android:id="@+id/webView">
  14.  
  15.     </WebView>
  16.  
  17.     <!-- view for AdMob Banner Ad -->
  18.     <com.google.android.gms.ads.AdView
  19.        android:id="@+id/adView"
  20.        android:layout_width="wrap_content"
  21.        android:layout_height="wrap_content"
  22.        android:layout_alignParentBottom="true"
  23.        android:layout_centerHorizontal="true"
  24.        ads:adSize="BANNER"
  25.        ads:adUnitId="@string/banner_ad_unit_id" />
  26.  
  27.     <Button
  28.        android:layout_width="wrap_content"
  29.        android:layout_height="wrap_content"
  30.        android:text="Monitor"
  31.        android:id="@+id/button"
  32.        android:layout_alignParentTop="true"
  33.        android:layout_alignParentLeft="true"
  34.        android:layout_alignParentStart="true"
  35.        android:layout_marginLeft="116dp"
  36.        android:layout_marginStart="116dp"
  37.        android:background="#FF4081"/>
  38.  
  39. </RelativeLayout>
Add Comment
Please, Sign In to add comment