Admob横幅没有在真实设备中显示

时间:2017-05-21 22:01:12

标签: android admob ads adsense

在我的应用程序在谷歌商店2周后,我意识到Banner没有在真实设备中显示。当我使用Android studio虚拟设备进行测试时,它很好。

这个代码与我的MainActivity中的banner相关:

AdView mAdView = (AdView) findViewById(R.id.adView);
    AdRequest request = new AdRequest.Builder().build();
    mAdView.loadAd(request);

和布局:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/gray_background">
    <com.flaviofaria.kenburnsview.KenBurnsView
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <LinearLayout
        android:layout_marginTop="?attr/actionBarSize"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:context="misc.songbox.Search"
        android:orientation="vertical">

        <com.google.android.gms.ads.AdView

            android:id="@+id/adView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            ads:adSize="SMART_BANNER"
            ads:adUnitId="@string/bannerAd">

        </com.google.android.gms.ads.AdView>

        <ListView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/listView"
            android:dividerHeight="0dp"
            />

    </LinearLayout>
</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

使用此xml代码...

<com.google.android.gms.ads.AdView

        android:id="@+id/adView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="@string/bannerAd">

    </com.google.android.gms.ads.AdView>

答案 1 :(得分:0)

如果您能够加载测试广告但不能加载实时广告,则会发现您的AdMob帐户存在问题。您能确保正确设置支付系统和/或验证您的个人识别码吗?如果未完成,则不会从您的帐户投放实时广告。