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 在应用中加入广告(代码方式):
- 在AndroidManifest.xml 文件中
加入:
<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"/>
- 界面中设置加入广告的空间容器
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:minHeight="60px"
android:id="@+id/mainLayout"
android:orientation="vertical">
</LinearLayout> - 在Activity中代码设置广告
/** 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());
Step Six: 在Proguard-project.txt文件中加入如下代码。(否则将不显示广告)。如果没有此文件,则不必执行此步骤。
-dontwarn com.google.ads.**
结束!