Can#39;t dismiss Admob Interstitial Ads by pressing Back key button of Android device(无法通过按 Android 设备的后退键按钮关闭 Admob 插页式广告)
问题描述
我正在使用最新的广告库 ('com.google.android.gms:play-services-ads:19.3.0')
I am using latest Ads library ('com.google.android.gms:play-services-ads:19.3.0')
最近,无法通过按返回键按钮关闭插页式广告.我必须点击关闭";广告 UI 中的按钮以关闭广告.
Recently, It is unable to close an Interstitial ads by pressing Back key button. I have to tap on "Close" button from Ads UI to dismiss the Ads.
任何身体有同样的问题?它是 Admob 的新功能吗?
Any body had same problem? Is it a new feature of Admob?
MobileAds.initialize(this);
interstitialAd = new InterstitialAd(this);
interstitialAd.setAdUnitId("ca-app-pub-3940256099942544/1033173712");
interstitialAd.loadAd(new AdRequest.Builder().build());
tvTitle.setOnClickListener(v -> {
if (interstitialAd.isLoaded()) {
interstitialAd.show();
}
});
推荐答案
我也有这个.我曾与 AdMob 的人员进行过交谈,询问他们是否改变了广告的行为,他们证实确实如此.不再可以使用后退"按钮.按钮关闭插页式广告,他们告诉我不需要更改.我猜用户必须使用关闭".或X"广告本身内的按钮将其关闭.
I've this too. I've talked with people at AdMob and asked if they changed the behavior of their ads and they confirmed that they did. It's no longer possible to use the "Back" button to dismiss the interstitial ad and they told me that no changes are required on my side. I guess users must use the "Close" or "X" button within the ad itself to close it.
这篇关于无法通过按 Android 设备的后退键按钮关闭 Admob 插页式广告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法通过按 Android 设备的后退键按钮关闭 Admob 插页式广告


基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01