2013年12月24日

AdmobをAndroidのActivityに表示するメモ

 いつも、Admobの広告を設定する箇所を忘れてしまうのでそのメモ

プロジェクトに追加するライブラリを追加する

libs
 GoogleAdMobAdsSdk-6.4.1.jar

Admobの広告を表示するLayoutファイルに赤字のところを追加する

admob_publisheridは、Admobで発行されたpubliserIDをリソースに設定しておく。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>
    <com.google.ads.AdView 
   android:id="@+id/main_admob"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="@string/admob_publisherid"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
 
</LinearLayout>

AndroidManifest.xmlにactivityを追加する

<activity android:name="com.google.ads.AdActivity"  android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

Activityクラスに広告をロードする

    try {
        AdView adView  = (AdView)findViewById(R.id.main_admob);
        adView.loadAd(new AdRequest());
    } catch(Exception e) {
        e.printStackTrace();
    }


0 件のコメント:

コメントを投稿