0

该代码没有显示任何错误:

main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

  <com.google.ads.AdView android:id="@+id/googleads"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adUnitId="jkdfj8485idj34"
        ads:adSize="BANNER"
        ads:refreshInterval="60"
         ads:loadAdOnCreate="true"/>


  <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="AD" />

</LinearLayout>

AdmobActivity.java
 AdView ad = (AdView)findViewById(R.id.googleads);

        ad.setEnabled(true);
        ad = new AdView(this, AdSize.BANNER, MY_BANNER_UNIT_ID);
        AdRequest r = new AdRequest();
        //r.addTestDevice(AdRequest.TEST_EMULATOR);
        r.addTestDevice("CD9E4FDFA47A4AA03F9883E77C036EB3");
        //r.setTesting(true);
        ad.loadAd(r);

我有以下警告:

07-26 15:51:24.046: W/webcore(842): 在第一个布局后无法获取 viewWidth 07-26 15:51:24.871: W/Ads(842): 无效的未知请求错误:无法确定请求类型。您的广告单元 ID 是否正确?

请帮帮我。

4

1 回答 1

0

查看这些链接是否有助于解决您面临的问题:

于 2012-07-26T15:55:38.663 回答