gpt4 book ai didi

Android - 如何动态设置 AdMob 广告客户 ID 或广告尺寸?

转载 作者:行者123 更新时间:2023-11-29 19:43:46 26 4
gpt4 key购买 nike

https://firebase.google.com/docs/admob/android/banner 中提供的示例代码在 xml 文件中使用给定的广告商 ID 和广告尺寸对我来说效果很好。但能够根据某些参数设置广告商 ID 和横幅尺寸对我来说非常重要。

我考虑过这两个,但它们对我不起作用 ->

Programatically set the AdMob id String

How to specify adUnitId programmatically for AdMob?

当我尝试实现第二个时,当我尝试将 java 文件链接到 xml 文件时出现错误。它们应该如何链接?

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<FrameLayout
android:id="@+id/adView"
android:layout_width="match_parent"
android:background="@null"
android:layout_height="wrap_content" />
</LinearLayout>

AdView mAdView = new AdView(context);
mAdView.setAdSize(AdSize.BANNER);
mAdView.setAdUnitId(AD_UNIT_ID);
FrameLayout frameLayout = (FrameLayout) view.findViewById(R.id.adView);
frameLayout.addView(mAdView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);

关于Android - 如何动态设置 AdMob 广告客户 ID 或广告尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38201637/

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