當前最新的Admob廣告發布過程(已實踐):
Step One 登陸admob,註冊使用者
直接登陸http://www.admob.com/,用google的帳號登陸
Step Two 登陸admob後,在網站和應用程式選項中
選擇並添加android應用
注意:在產生好應用程式後,設定應用程式廣告設定,同時記錄一下發行者ID: 11119a2c6ff2759
Step Three 下載admob的sdk
下載路徑:http://code.google.com/intl/zh-CN/mobile/ads/download.html
Step Four 解壓SDK ,應用程式載入sdk中的GoogleAdMobAdsSdk-4.1.1.jar
Step Five 在應用中加入廣告(代碼方式):
加入:
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"
/>
//許可權部分:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
/** Called when the activity is first created. */
private AdView adView;
// Create the adView
adView = new AdView(this, AdSize.BANNER, "a14e9a2c6ff2759");
// 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 a
adView.loadAd(new AdRequest());