私は Android アプリを持っていて、adMob 広告を追加したいと考えています。以下のコードがあります。adView を onReceiveAd() でリッスンすると、広告は表示されますが、レイアウトには表示されません。
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);