4

我已在清单中包含相关部分:

<meta-data android:value="123456789" android:name="ADMOB_PUBLISHER_ID" />

            <!-- Track Market installs from AdMob ads -->             
            <receiver android:name="com.admob.android.ads.analytics.InstallReceiver" android:exported="true">
                    <intent-filter>
                            <action android:name="com.android.vending.INSTALL_REFERRER" />
                    </intent-filter>
            </receiver>
            <meta-data android:value="true" android:name="ADMOB_ALLOW_LOCATION_FOR_ADS" />'

<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>'

attrs 从示例中复制:

<?xml version="1.0" encoding="utf-8"?>
    <resources>
            <declare-styleable name="com.admob.android.ads.AdView">
                    <attr name="backgroundColor" format="color" />
                    <attr name="primaryTextColor" format="color" />
                    <attr name="secondaryTextColor" format="color" />
                    <attr name="keywords" format="string" />
                    <attr name="refreshInterval" format="integer" />
            </declare-styleable>
    </resources>

我的布局(顺便说一句,这是一个选项卡视图)是一个表格,它在自己的行上:

xmlns:app="http://schemas.android.com/apk/res/com.icukansas.lenscalculator"

<TableRow>
     <!-- Place an AdMob ad at the bottom of the screen. -->
    <!-- It has white text on a black background. -->
    <com.admob.android.ads.AdView
      android:layout_span="4"
      android:id="@+id/ad" 
      app:backgroundColor="#000000"
      app:primaryTextColor="#FFFFFF"
      app:secondaryTextColor="#CCCCCC"
      app:keywords="security"
    />
    </TableRow>

然后我打电话给:

public class myClass extends Activity implements AdListener{

public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

    setContentView(R.layout.tab_thistab);

    AdView ad = (AdView) findViewById(R.id.ad);
    ad.setAdListener(this);

每次我在日志中收到 onFailedToReceiveAd 错误。

我敢肯定它很容易我想念:)

4

6 回答 6

1

是的,您缺少两件事:

1.最重要的:

<meta-data android:value="a14e20856e4ad8f" android:name="ADMOB_PUBLISHER_ID" />

2.刷新间隔:

 <com.admob.android.ads.AdView     
           android:id="@+id/ad" 
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content"
           myapp:backgroundColor="#000000"
           myapp:primaryTextColor="#FFFFFF"
           myapp:secondaryTextColor="#CCCCCC"
           myapp:refreshInterval="30"           
  /> 

休息看起来不错。

于 2010-08-09T05:46:38.967 回答
1

您忘记在清单中添加 netstate 权限。

于 2011-11-09T16:01:50.110 回答
1

我知道这很旧,但我认为这对试图在表格布局中放置广告的人会有所帮助。我最终通过在我的 TableLayout 中包含 android:stretchColumns="0,1,2,3" 来实现这一点。如果您的跨度不是 4,您将在stretchColumns 中放置与您的跨度相同数量的列/数字。

<TableLayout android:id="@+id/TableLayout01" android:stretchColumns="0,1,2,3" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
于 2011-01-05T02:20:49.473 回答
0

我有同样的问题 - friggin tabview。将它放在主要活动而不是选项卡中效果很好。

于 2010-10-18T19:59:32.827 回答
0

嗨,杰森,我有解决方案,可能有助于在您的课堂上编写此代码

AdManager.setTestDevices(new String[] { AdManager.TEST_EMULATOR, // Android emulator
                "5669B77A6042345BC23219DCAC6C15CA",// device id
                });
ad = (AdView) findViewById(R.id.ad);
ad.requestFreshAd();
ad.setAdListener(this);

在信息选项卡中运行应用程序后,您可以在 logcat 中获取设备 ID,搜索文本。

要在模拟器上获取测试广告,请使用 AdManager.setTestDevices... 还设置侦听器

你会得到你的设备ID,粘贴它,否则你以前的代码是完美的。

于 2011-02-15T10:17:59.100 回答
0

我已经尝试了将近 3 个小时。我遵循所有谷歌示例。最后,我想通了。您可以自定义请求,然后它将起作用。在我的示例中,我在 Activity 类中执行此操作:

    AdRequest re = new AdRequest();
    //re.setTesting(true);
    re.setGender(AdRequest.Gender.FEMALE); 
    adview.loadAd(re);

你可以在这里查看我的示例,我总是放我的 apk 和源代码。您可以下载并尝试:

在 Android 应用程序中添加 Google Admob

于 2011-04-30T17:49:20.480 回答