zoukankan      html  css  js  c++  java
  • 为免费app嵌入Admob广告

    为免费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节点中添加

    <!– The application’s publisher ID assigned by AdMob –>

    <meta-data android:value=”a14ae1ce0357305″ android:name=”ADMOB_PUBLISHER_ID” />

    manifest节点添加权限申请

    <!– AdMob SDK permissions –>

    <uses-permission android:name=”android.permission.INTERNET” />

    4.添加attrs.xml

    /res/values/attrs.xml

    <?xml version=”1.0″ encoding=”utf-8″?>

    <resources>

    <declare-styleable name=”com.admob.android.ads.AdView”>

    <attr name=”testing” format=”boolean” />

    <attr name=”backgroundColor” format=”color” />

    <attr name=”textColor” format=”color” />

    <attr name=”keywords” format=”string” />

    <attr name=”refreshInterval” format=”integer” />

    <attr name=”isGoneWithoutAd” format=”boolean” />

    </declare-styleable>

    </resources>

    5.添加广告组件

    <?xml version=”1.0″ encoding=”utf-8″?>

    <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”

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

    android:orientation=”vertical”

    android:layout_width=”fill_parent”

    android:layout_height=”fill_parent”

    >

    <TextView

    android:layout_width=”fill_parent”

    android:layout_height=”wrap_content”

    android:text=”@string/hello”

    />

    <com.admob.android.ads.AdView

    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″

    />

    </LinearLayout>

    6.显示效果

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

    adm

  • 相关阅读:
    WebRequest 超时不起作用
    nutch导入ide nutch1.3
    nutch 设置抓取间隔策略
    c#: Error: Crossthread operation not valid
    mysql命令行基本操作
    Boost String Algorithms Library 函数详解三 (find)
    boost::timer 的替代方案
    windows驱动程序开发初探
    深入浅出Win32多线程程序设计之线程通信
    深入浅出Win32多线程设计之MFC的多线程(1)
  • 原文地址:https://www.cnblogs.com/android-blogs/p/5007084.html
Copyright © 2011-2022 走看看