Advertisement
mawarputih

iklan

Oct 1st, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:ads="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingLeft="@dimen/activity_horizontal_margin"
  7. android:paddingRight="@dimen/activity_horizontal_margin"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. android:paddingBottom="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity">
  11. <TextView android:text="@string/hello_world" android:layout_width="wrap_content"
  12. android:layout_height="wrap_content" />
  13. <!--menambahkan elemen AdView untuk menampilkan iklan/ads-->
  14. <com.google.android.gms.ads.AdView
  15. android:id="@+id/adView"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerHorizontal="true"
  19. android:layout_alignParentBottom="true"
  20. ads:adSize="BANNER"
  21. ads:adUnitId="@string/banner_ad_unit_id">
  22. </com.google.android.gms.ads.AdView>
  23. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement