Android Admob横幅显示始终位于页面前方

时间:2016-11-10 12:31:34

标签: android xml admob

我的横幅广告只显示屏幕截图。

我的xml代码是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main">

<RelativeLayout
    android:id="@+id/fragmentReplace"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"></RelativeLayout>

<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true"
    android:layout_marginTop="30dp"
    ads:adSize="SMART_BANNER"
    ads:adUnitId="@string/banner_ad_unit_id"></com.google.android.gms.ads.AdView>

我该如何解决?

由于

screenshot

1 个答案:

答案 0 :(得分:0)

添加以下代码:

<com.google.android.gms.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        ads:loadAdOnCreate="true"
        app:adSize="BANNER"
        app:adUnitId="@string/banner_ad_unit_id" >
    </com.google.android.gms.ads.AdView>

你想要解决的问题。