【问题标题】:AdMob banner ad request fails with code ERROR_CODE_INVALID_REQUEST 1AdMob 横幅广告请求失败,代码为 ERROR_CODE_INVALID_REQUEST 1
【发布时间】:2016-01-02 19:24:01
【问题描述】:

我在显示 AdMob 横幅时遇到了一些问题。我收到错误 1,这意味着 ERROR_CODE_INVALID_REQUEST。当我更改setAdUnitId 并使用UnitId 进行测试时,它可以工作。但是当我使用AdMob 提供的UnitId 时,我得到了错误。

这是布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            xmlns:ads="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#262626"
            tools:context="com.elis91.elis.contatti.Contatti">

<LinearLayout
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#1e88e6"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/textView5MSGnonLetti"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="You have 0 new messagges"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#cdfff9f9"
        android:textSize="20dp"/>
</LinearLayout>

<ListView
    android:id="@+id/listView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/linearLayout"
    android:layout_above="@+id/relativeLayout3"/>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="52dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:id="@+id/relativeLayout3"
    android:gravity="bottom">

    <com.google.android.gms.ads.AdView
        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="@+id/banner_ad_unit_id">
    </com.google.android.gms.ads.AdView>

</RelativeLayout>

这是安卓:

    private void setupGoogleAds(){
    AdView mAdView = (AdView) findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder()
            //.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
            .build();

    mAdView.loadAd(adRequest);
    mAdView.setAdListener(new AdListener() {
        @Override
        public void onAdOpened() {
            Log.d("esx", "onAdOpened");
            // Save app state before going to the ad overlay.
        }

        @Override
        public void onAdLoaded() {
            Log.d("esx", "onAdLoaded");
            // Save app state before going to the ad overlay.
        }

        @Override
        public void onAdFailedToLoad(int errorCode) {

            Log.d("esx", "onAdFailedToLoad: " + errorCode+"--"+AdRequest.ERROR_CODE_NO_FILL+"-"+AdRequest.ERROR_CODE_NETWORK_ERROR+"-"+AdRequest.ERROR_CODE_INVALID_REQUEST+"-"+AdRequest.ERROR_CODE_INTERNAL_ERROR+"-");
            // Save app state before going to the ad overlay.
        }

        @Override
        public void onAdClosed() {
            Log.d("esx", "onAdClosed");
            // Save app state before going to the ad overlay.
        }

        @Override
        public void onAdLeftApplication() {
            Log.d("esx", "onAdLeftApplication");
            // Save app state before going to the ad overlay.
        }
    });
}

【问题讨论】:

    标签: android admob banner


    【解决方案1】:

    ERROR_CODE_INVALID_REQUEST 表示:

    广告请求无效;例如,广告单元 ID 是 不正确。

    Source

    检查您是否传递了正确的广告单元 ID。

    我检查了您的代码并认为问题出在此处。

    你已经写了

    ads:adUnitId="@+id/banner_ad_unit_id"
    

    你一定是想写

    ads:adUnitId="@string/banner_ad_unit_id"
    

    假设您已将广告单元 ID 存储在字符串资源中。如果不在你的字符串资源中,直接如下:

    ads:adUnitId="XXXXXXXXXXXXXXXX" // Replace XXXXXXXXXXXXXXXX with your ad unit id.
    

    【讨论】:

    • 谢谢哥们,问题是@+id/,我改成@string/ 并且工作了
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-12-30
    相关资源
    最近更新 更多