Admob 测试广告被忽略,仅显示真实广告

发布于 2024-12-10 10:46:49 字数 647 浏览 0 评论 0原文

我正在使用它来通过 Eclipse 中的 Admob 获取测试广告

  try{  
     AdRequest request = new AdRequest();
    request.addTestDevice(AdRequest.TEST_EMULATOR);
    request.addTestDevice(DEVICEID);    // My T-Mobile G1 test phone
    LinearLayout layout = (LinearLayout) findViewById(R.id.layout_main);    
    AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "APP_ID");
    RelativeLayout.LayoutParams adWhirlLayoutParams =
    new RelativeLayout.LayoutParams(
    LayoutParams.FILL_PARENT,
    LayoutParams.WRAP_CONTENT);
    layout.addView(adWhirlLayout, adWhirlLayoutParams);
    layout.invalidate();


    }

有人知道我做错了什么吗?

I am using this to get test ads VIA Admob in eclipse

  try{  
     AdRequest request = new AdRequest();
    request.addTestDevice(AdRequest.TEST_EMULATOR);
    request.addTestDevice(DEVICEID);    // My T-Mobile G1 test phone
    LinearLayout layout = (LinearLayout) findViewById(R.id.layout_main);    
    AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "APP_ID");
    RelativeLayout.LayoutParams adWhirlLayoutParams =
    new RelativeLayout.LayoutParams(
    LayoutParams.FILL_PARENT,
    LayoutParams.WRAP_CONTENT);
    layout.addView(adWhirlLayout, adWhirlLayoutParams);
    layout.invalidate();


    }

Does anyone have any idea of what i am doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人练习一个人 2024-12-17 10:46:49

直接使用Google AdMob Ads SDK时,调用request.addTestDevice是获取AdMob测试广告的方式。但在此示例中,您似乎正在尝试通过 AdWhirl 获取 AdMob 测试广告。要在 AdWhirl 中获取测试广告,请执行以下操作:

 AdWhirlTargeting.setTestMode(true);

请注意,上述内容目前仅适用于模拟器。 AdWhirl 目前不具备将特定设备设置为测试模式的功能。

Calling request.addTestDevice is the way to get AdMob test ads when using the Google AdMob Ads SDK directly. But in this example it looks like you are trying to get AdMob Test Ads through AdWhirl. To get test ads in AdWhirl, do this instead:

 AdWhirlTargeting.setTestMode(true);

Note that the above will currently only work for the emulator. AdWhirl currently does not have the functionality to set a specific device for test mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文