山海关人大主任:为免费app嵌入Admob广告

来源:百度文库 编辑:中财网 时间:2024/04/29 03:33:12
为免费app嵌入Admob广告,进而获得广告收入。 
1.http://www.admob.com/注册一个帐号, 

添加Add Mobile Site/app,输入相关信息后,提交完成, 

下载Android平台使用的JAR,查看发布者 ID。 
2.然后将JAR添加到你的项目中 

Properties->Java Build Path->Libraries->Add JARs…->Select the JAR->OK 
3.编辑AndroidManifest.xml 

application节点中添加 

 

 

manifest节点添加权限申请 

 

 
4.添加attrs.xml 

/res/values/attrs.xml 

 

 

 

 

 

 

 

 

 

 

 
5.添加广告组件 

 


xmlns:admobsdk=”http://schemas.android.com/apk/res/com.moandroid.livesports” 

android:orientation=”vertical” 

android:layout_width=”fill_parent” 

android:layout_height=”fill_parent” 




android:layout_width=”fill_parent” 

android:layout_height=”wrap_content” 

android:text=”@string/hello” 

/> 


android:id=”@+id/ad” 

android:layout_width=”fill_parent” 

android:layout_height=”wrap_content” 

admobsdk:backgroundColor=”#000000″ 

admobsdk:textColor=”#FFFFFF” 

admobsdk:keywords=”Android application” 

admobsdk:refreshInterval=”60″ 

/> 

 
6.显示效果 
 

为免费app嵌入Admob广告,进而获得广告收入。