最近の更新

2014年8月16日土曜日

AdMobでインタースティシャル広告を表示する方法(Google Play Services版)

【目的】
AndroidでAdMobでインタースティシャル広告を表示します。
※Google Play Servicesのライブラリを使用して動かす版です。



【手順1】
1.「Androidプロジェクトの作成・実行方法(バージョン別一覧)」のAndroidプロジェクトの作成手順で、「AndroidSample45-003-AdMobInterstitialByGooglePlay」といプロジェクトを作成。
※プロジェクトの設定は以下の通り。
※他の項目は任意。
項目名 項目に設定する値
アプリケーション名(Application Name) com.example.androidsample45_003
プロジェクト名(Project Name) AndroidSample45-003-AdMobInterstitialByGooglePlay
パッケージ名(Package Name) com.example.androidsample45_003
Build SDK API 13
Minimum Required SDK API 8
2.「Google Play services SDKをライブラリ参照する方法」の手順で、ライブラリを設定。



【手順2】
1.「AndroidManifest.xml」は以下の通り。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.androidsample45_003"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="13" />

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.androidsample45_003.MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
    </application>

</manifest>
2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。



【手順3】
1.「res/layout/activity_main.xml」は以下の通り。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_main_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onClickButtonAdLoad"
        android:text="広告読込" />

    <TextView
        android:id="@+id/textViewAdStatus"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="初期状態" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="onClickButtonAdDisplay"
        android:text="広告表示" />

</LinearLayout>
2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。



【手順4】
1.「src/com/example/androidsample45_003/MainActivity.java」は以下の通り。
package com.example.androidsample45_003;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;

import com.google.android.gms.ads.AdListener;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.InterstitialAd;

public class MainActivity extends Activity {
    private InterstitialAd interstitial;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        interstitial = new InterstitialAd(this);
        interstitial.setAdUnitId("【AdMobの広告ユニットID】");
        interstitial.setAdListener(new AdListener() {
            @Override
            public void onAdLoaded() {
                displayMessage("広告が読み込まれました。");
            }

            public void onAdFailedToLoad(int errorCode) {
                switch (errorCode) {
                case AdRequest.ERROR_CODE_INTERNAL_ERROR:
                    displayMessage("Internal error");
                    break;
                case AdRequest.ERROR_CODE_INVALID_REQUEST:
                    displayMessage("Invalid request");
                    break;
                case AdRequest.ERROR_CODE_NETWORK_ERROR:
                    displayMessage("Network Error");
                    break;
                case AdRequest.ERROR_CODE_NO_FILL:
                    displayMessage("No fill");
                    break;
                }
            }

            public void onAdLeftApplication() {
                Toast.makeText(MainActivity.this, "他のアプリが開かれました。", Toast.LENGTH_SHORT).show();
            }

            public void onAdOpened() {
                Toast.makeText(MainActivity.this, "広告が開かれました。", Toast.LENGTH_SHORT).show();
            }

            public void onAdClosed() {
                Toast.makeText(MainActivity.this, "広告が閉じられました。", Toast.LENGTH_SHORT).show();
            }
        });
    }

    public void onClickButtonAdLoad(View view) {
        AdRequest adRequest = new AdRequest.Builder().addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
                                                     .addTestDevice("【必要に応じてデバイスID】")
                                                     .build();
        interstitial.loadAd(adRequest);
    }

    public void onClickButtonAdDisplay(View view) {
        if (interstitial.isLoaded()) {
            interstitial.show();
            displayMessage("広告を表示しました。");
        } else {
            displayMessage("広告がまだ読み込まれていません。");
        }
    }

    private void displayMessage(String message) {
        ((TextView) findViewById(R.id.textViewAdStatus)).setText(message);
    }
}
2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。



【手順5】
1.「Androidプロジェクトの作成・実行方法(バージョン別一覧)」のAndroidプロジェクトの実行手順で、実行。



【手順6】
1.以下の様に表示されれば成功です。























以上です。

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。

関連記事