在Android程序中加入Google AdMob (二)
上一篇文章介绍了如何在Java代码中加入AdView的对象,在程序中显示Google AdMob的广告。一般情况下Android程序都是用XML文件描述软件界面的,这篇文章就介绍一下如何在XML文件中加入Google AdMob的广告。 在XML文件中加入AdView主要有下面4个步骤: 将AdMob的SDK JAR文件加入到项目 在res/layout/main.xml文件中定义一个com.google.ads.AdView 在res/values/attrs.xml文件中定义adSize枚举类型和adUnit属性 运行时将AdView作为资源查找到并请求广告内容 1. 将AdMob的SDK JAR文件加入到项目,上篇文章中已经介绍过,在此略过。 2. 定义一个com.google.ads.AdView 修改res/layout/main.xml文件,加入AdView的定义,并设置属性值。 xmlns:ads="http://schemas.android.com/apk/res/com.google.example" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> android:layout_width="wrap_content" android:layout_height="wrap_content" ads:adUnitId="MY_AD_UNIT_ID" ads:adSize="BANNER"/> 将XML文件中的MY_AD_UNIT_ID替换为你的publisher ID,同时不要忘记的是要把ads的名字空间加入到文...