gpt4 book ai didi

java.lang.IllegalStateException : The ad size and ad unit ID must be set before loadAd is called

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:32 25 4
gpt4 key购买 nike

我不知道为什么,但由于某种原因,当我调用 AdView.loadAd(AdRequest) 时,我的应用程序输出 W/Ads: required XML attribute "adSize"was Missing. 然后崩溃并显示java.lang.IllegalStateException:广告尺寸和广告单元 ID 必须在调用 loadAd 之前设置。即使在我的 xml 布局文件中定义了 adSize。有什么建议么?

XML布局文件

        <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/linearLayout"
android:background="@android:color/white"
android:orientation="vertical"
android:padding="2dp"
android:paddingTop="10dp">

<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="****************" />
</LinearLayout>

Java 代码

    AdView ad = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
ad.loadAd(adRequest);

最佳答案

在调用 loadAd() 方法之前,以编程方式设置广告尺寸和横幅 ID:

AdView ad = (AdView) findViewById(R.id.adView);
//Set the Ad Size
ad.setAdSize(AdSize.BANNER);
//Set the Banner Id
ad.setAdUnitId(YOUR_BANNER_ID);
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
ad.loadAd(adRequest);

将布局更改为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical"
android:padding="2dp"
android:paddingTop="10dp">

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

</RelativeLayout>

关于java.lang.IllegalStateException : The ad size and ad unit ID must be set before loadAd is called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36960985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com