https://firebase.google.com/docs/admob/android/banner中提供的示例代码可以使用给定的广告客户ID和xml文件中的广告尺寸。但对我来说,能够根据某些参数设置广告客户ID和横幅尺寸非常重要。
我考虑过这两个,但它们对我不起作用 - >
Programatically set the AdMob id String 和
How to specify adUnitId programmatically for AdMob?
当我尝试实现第二个时,我尝试将java文件链接到xml文件时出错。他们应该如何联系?
答案 0 :(得分:2)
<?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);