所以我只是将我的 AdMob .jar 文件集成到我的项目中。当我将 AdMob 文档中的一些代码写入我的项目时:
// Create the adView
adView = new AdView(this, AdSize.BANNER,
"MY-ID");
// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
LinearLayout layout = (LinearLayout) findViewById(R.id.mainLayout);
// Add the adView to it
layout.addView(adView);
// Initiate a generic request to load it with an ad
adView.loadAd(new AdRequest());
当我向我的 AndroidManifest.xml 添加所需的权限时:
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
最后,我在 main_activity.xml 中添加了实际的广告横幅:
<LinearLayout
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/mainLayout" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="MY-ID"
ads:loadAdOnCreate="true" >
</com.google.ads.AdView>
</LinearLayout>
但这有一个问题。在我的实际布局预览中,它只显示一个广告,但是当我在我的设备上启动我的应用程序时,我得到了两个广告横幅。也许有人会知道这有什么问题?