我需要在 java 类中以编程方式设置 admob 横幅广告单元 ID
mAdView.setAdUnitId("ca-app-pub-3940256099942544/6300978111");
mAdView.setAdSize(AdSize.SMART_BANNER);
同时使用xml进行布局
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
我试过这个,但它没有工作,因为它显示一个错误:
Required XML attribute “adSize” was missing
请帮忙