【android 運營】 在android應用中添加admob廣告

來源:互聯網
上載者:User

當前最新的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 在應用中加入廣告(代碼方式):

  •      在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());


  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.