我有一个 android 应用程序,我想添加 adMob 广告。我有以下代码,当我使用 onReceiveAd() 收听 adView 时,广告会出现但不会在布局中显示任何想法?
adsLayout = (LinearLayout) findViewById(R.id.ads);
adView = new AdView(this, AdSize.SMART_BANNER, Constants.adMobId);
adsLayout.addView(adView);
adView.loadAd(new AdRequest().setTesting(true));
我在清单中也有互联网权限和 admob configchanges
adsLayout 是
<LinearLayout
android:id="@+id/adsLayout"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:background="@android:color/white" >
</LinearLayout>
我通过以下代码传递 publisherId
adView = new AdView(this, AdSize.SMART_BANNER, Constants.adMobKey);