3

アプリでadmobをセットアップしようとしていますが、admobサービスが機能するためにユーザーIDを入力する必要がある行でエラーが発生します:(

package com.google.example.ads.fundamentals;

import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;

import com.google.ads.AdRequest;
import com.google.ads.AdSize;
import com.google.ads.AdView;

/**
 * A simple {@link Activity} that embeds an AdView.
 */
public class BannerSample extends Activity {
  /** The view to show the ad. */
  private AdView adView;

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

error here
// 広告を作成します。adView = 新しい AdView(これ, AdSize.BANNER, a1515* * **** );

    // Add the AdView to the view hierarchy. The view will have no size
    // until the ad is loaded.
    LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayout);
    layout.addView(adView);

    // Create an ad request. Check logcat output for the hashed device ID to
    // get test ads on a physical device.
    AdRequest adRequest = new AdRequest();
    adRequest.addTestDevice(AdRequest.TEST_EMULATOR);

    // Start loading the ad in the background.
    adView.loadAd(adRequest);
  }

  /** Called before the activity is destroyed. */
  @Override
  public void onDestroy() {
    // Destroy the AdView.
    if (adView != null) {
      adView.destroy();
    }

    super.onDestroy();
  }
}
4

1 に答える 1

0


問題は、クラス AdView の 3 番目のパラメーターが文字列である必要があることだと思います

に変更してみてください:

 adView = new AdView(this, AdSize.BANNER, "a1515******");

これがお役に立てば幸いです

乾杯、

于 2013-03-28T21:05:44.863 に答える