Advertisement
Guest User

RelativeLaytouAd

a guest
Jul 8th, 2011
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.95 KB | None | 0 0
  1. <RelativeLayout
  2.         xmlns:android="http://schemas.android.com/apk/res/android"
  3.         android:orientation="vertical"
  4.         android:layout_width="fill_parent"
  5.         android:layout_height="fill_parent">
  6.         <Button
  7.                 android:id="@+id/button1"
  8.                 android:layout_height="wrap_content"
  9.                 android:text="Button"
  10.                 android:layout_alignParentTop="true"
  11.                 android:layout_alignParentLeft="true"
  12.                 android:layout_width="fill_parent"></Button>
  13.         <com.google.ads.AdView
  14.                 android:layout_height="wrap_content"
  15.                 android:layout_width="fill_parent"
  16.                 android:id="@+id/adView"
  17.                 android:layout_alignParentBottom="true"
  18.                 android:layout_alignParentLeft="true"></com.google.ads.AdView>
  19.         <ListView
  20.                 android:layout_height="wrap_content"
  21.                 android:layout_width="fill_parent"
  22.                 android:id="@+id/listView1"
  23.                 android:layout_below="@+id/button1"
  24.                 android:layout_alignParentLeft="true"
  25.                 android:layout_above="@+id/adView"></ListView>
  26. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement