- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我集成了 google admob 广告,但显示错误,
W/Ads:获取广告响应时出现问题。错误代码:008-09 16:05:43.933 24002-24002/com.locationtracking W/Ads:加载广告失败:0
我创建了一个新的广告 ID 并复制了插页式广告单元 ID 和应用程序 ID,但它不起作用。
但是当我使用 testing interstial id,它正在显示一个广告。但是当我复制并使用创建的插页式广告 ID 时,它不会显示广告。在过去的几天里,我在这方面苦苦挣扎。我创建了新帐户并检查了。仍然是同样的错误。
MobileAds.initialize(this, "ca-app-pub-9172823052987868~3234462570");
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId("ca-app-pub-9172823052987868/8576265071");
AdRequest adRequestInterstitial = new AdRequest.Builder().addTestDevice("deviceid").build();
mInterstitialAd.loadAd(adRequestInterstitial);
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
}
@Override
public void onAdLoaded() {
mAdIsLoading = false;
showInterstitial();
}
@Override
public void onAdFailedToLoad(int errorCode) {
mAdIsLoading = false;
}
});
}
private void showInterstitial() {
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
AdRequest adRequest = new AdRequest.Builder().addTestDevice("deviceid").build();
mInterstitialAd.loadAd(adRequest);
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services-ads:9.2.1'
compile 'com.google.android.gms:play-services-analytics:9.2.1'
}
最佳答案
常见错误!您的代码没有错误。一切都很好。
您只需要稍等一下。您的广告 ID 是新创建的,因此从谷歌服务器获取广告需要一些时间。您可以通过添加您为早期应用程序创建的横幅/插页式广告 ID 来验证这一点,您会看到它们有效。所以给它一些时间,它很快就会起作用。至少对我来说,它一直在发生。
W/Ads:获取广告响应时出现问题。错误代码:0 08-09 16:05:43.933 24002-24002/com.locationtracking W/Ads:加载广告失败:0
删除 addTestDevice("deviceid");从您的代码显示真实广告
AdRequest adRequestInterstitial = new AdRequest.Builder().addTestDevice("deviceid").build();
到
AdRequest adRequestInterstitial = new AdRequest.Builder().build();
尝试下面的代码运行良好:
public class MainActivity extends AppCompatActivity {
InterstitialAd mInterstitialAd;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
////////////////////////// banner/////////////////////////
AdView mAdView = (AdView) findViewById(R.id.adView);
//AdRequest adRequest = new AdRequest.Builder().addTestDevice("7339C0A9091FA2D6AA9A2BF29077B5EA").build();
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
///////////////////////////////////////////////////////////
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId(getResources().getString(R.string.interstitial_unit_id));
mInterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdClosed() {
loadAdd();
}
});
loadAdd();
}
@Override
protected void onStart() {
super.onStart();
showInterstitial();
}
@Override
protected void onStop() {
super.onStop();
showInterstitial();
}
//////////////////////////////////add Interstitial section//////////////////////////////////////////////
private void showInterstitial() {
// Show the ad if it's ready. Otherwise toast and restart the game.
if (mInterstitialAd != null && mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
} else {
//Toast.makeText(this, "Ad did not load", Toast.LENGTH_SHORT).show();
loadAdd();
}
}
private void loadAdd() {
// Request a new ad if one isn't already loaded, hide the button, and kick off the timer.
if (!mInterstitialAd.isLoading() && !mInterstitialAd.isLoaded()) {
//AdRequest adRequest = new AdRequest.Builder().addTestDevice("7339C0A9091FA2D6AA9A2BF29077B5EA").build();
AdRequest adRequest = new AdRequest.Builder().build();
mInterstitialAd.loadAd(adRequest);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
}
编译 'com.google.android.gms:play-services-ads:8.3.0'
关于android - 无法显示广告 ErrorCode : 0 in ads android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45588566/
我创建了 android 应用程序并尝试将 admob 添加到它。但它不起作用。谁能帮我解决这个错误。 [2014-04-09 15:16:51 - Dex Loader] Unable to exe
在 docusign 中请求收件人 View 时,我收到错误消息 "errorCode": "USER_DOES_NOT_BELONG_TO_SPECIFIED_ACCOUNT", "messa
我需要在异常时包含错误代码。 Exceptions (Delphi) type EInOutError = class(Exception) ErrorCode: Integer;
我正在编写一个脚本,用于从youtube下载视频。我知道,我需要解析文件,其中包含从url:http://www.youtube.com/get_video_info?video_id= {video
我有一个套接字包装器库,我一直在处理它,除其他外,在开始时进行一点握手,以确保与您交谈的任何人都使用与您相同的协议(protocol)和设置。我以标准方式创建了自己的异常类: private cla
当我尝试查询数据库并将结果写入文件时出现此错误。它以前从未发生过。 java.sql.SQLException: Error writing file '/tmp/MYwADPLw' (Errcode
我尝试为登录设置错误代码,例如用户想要输入他的个人资料但输入了错误的密码,他会收到他输入错误密码的通知......但如果我尝试这样做只是在没有登录的情况下将我带到了正常的提要页面,所以 errorCo
执行批处理操作时出现此错误。Use getNextException() to retrieve the exceptions for specific batched elements.ERRORC
我正在尝试编写自己的错误报告功能。作为模板,我使用的示例包含以下代码片段: if (!(error_reporting() & $errorcode)) { return; } 但是它到底是做
当您尝试从 Azure Active Directory 获取 token 时,如果在 token 获取过程中发生错误,则会引发异常类型。 该异常称为 AdalException ms docs li
当您尝试从 Azure Active Directory 获取 token 时,如果在 token 获取过程中发生错误,则会引发异常类型。 该异常称为 AdalException ms docs li
ErrorCode 和 SocketErrorCode 是否总是相同的值但表示为不同的类型? SocketException class description给出了大部分相同的描述,但我没有看到任何
W/Ads: There was a problem getting an ad response. ErrorCode: 1 W/Ads: Failed to load ad: 1 来自 logca
我已经添加了这段代码来查看应用程序无法接收广告时的错误。 // Create an ad request. Check logcat output for the hashed device
本文实例讲述了腾讯微博提示missing parameter errorcode 102 错误的解决方法。分享给大家供大家参考。具体分析如下: 今天在调试腾讯微博接口时,出现一个错误,找了网上都没
我已经运行了 MAMP(OSX 的 XAMP),我正在尝试设置 subversion。 当我在浏览器中访问新创建的存储库时,我得到: Could not open the requested S
我集成了 google admob 广告,但显示错误, W/Ads:获取广告响应时出现问题。错误代码:008-09 16:05:43.933 24002-24002/com.locationtrack
你能帮我解决这个问题吗 当我尝试创建表 dvdTitle 时,出现以下错误 Error Code: 1005 Can't create table 'netflixclone.dvdtitle' (e
我有一个 CakePHP 应用程序,我想对用户尝试上传一个对于 MySQL 数据包大小来说太大的文件使用react。我想获取 MySQL 错误,然后根据该错误向用户提供错误消息。 看起来 CakePH
一般来说,将 ErrorCode 和 SQLState 组合视为特定异常的唯一 ID,作为代码逻辑的基础是否安全? 更具体地说,DataDirect 是否遵循这样的事情? 另外对于我需要的确切案例,我
我是一名优秀的程序员,十分优秀!