today:
58
yesterday:
170
Total:
999,364

Add AdView to the layout

admin 2017.07.21 02:00 Views : 1580

The first step toward displaying a banner is to place AdView in the layout for the Activity or Fragment in which you'd like to display it. The easiest way to do this is to add one to the corresponding XML layout file. Here's an example that shows AdView at the bottom of an Activity:

main_activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
xmlns:tools="http://schemas.android.com/tools"
       
android:layout_height="match_parent"
       
android:layout_width="match_parent"
       
android:paddingLeft="@dimen/activity_horizontal_margin"
       
android:paddingRight="@dimen/activity_horizontal_margin"
       
android:paddingTop="@dimen/activity_vertical_margin"
       
android:paddingBottom="@dimen/activity_vertical_margin"
       
tools:context=".MainActivity">

       
<TextView android:text="@string/hello_world"
           
android:layout_width="wrap_content"
           
android:layout_height="wrap_content" />

       
<com.google.android.gms.ads.AdView
           
xmlns:ads="http://schemas.android.com/apk/res-auto"
           
android:id="@+id/adView"
           
android:layout_width="wrap_content"
           
android:layout_height="wrap_content"
           
android:layout_centerHorizontal="true"
           
android:layout_alignParentBottom="true"
           
ads:adSize="BANNER"
           
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
       
</com.google.android.gms.ads.AdView>


</RelativeLayout>

Note the following required attributes:

  • ads:adSize - Set this to the ad size you'd like to use (see the banner size section below for details).
  • ads:adUnitId - Set this to the unique identifier given to the ad unit in your app where ads are to be displayed. If you show banner ads in different activities, each would require an ad unit.
No. Subject Author Date Views
48 Google Map admin 2017.05.29 21
47 How To Create A Simple Web View In Xcode 8 (Swift 3.0) admin 2017.05.21 26
46 How to make Mobile Web admin 2017.05.08 28
45 mnifest solatoz 2017.06.02 28
44 Menu admin 2017.06.02 29
43 Google Map 2 admin 2017.05.29 30
42 Android options menu tutorial admin 2017.05.17 32
41 Main Activity admin 2017.06.02 32
40 Map Activity Layout admin 2017.06.02 32
39 Swipe Activity layout admin 2017.06.02 32
38 Map Activity admin 2017.06.02 33
37 Android Tutorial 9 - The Navigation Drawer admin 2017.05.17 35
36 ExpandableTextView admin 2017.05.17 36
35 MainActivity(IOS) admin 2017.06.04 36
34 Change Project Name admin 2017.06.03 37
33 Scrolling Activity admin 2017.06.02 38
32 Open Multiple Activities from Multiple Buttons admin 2017.05.24 39
31 About Center (class) admin 2017.06.02 40
30 MainActivity admin 2017.06.04 44
29 Google Maps Api .xml admin 2017.06.02 50