简体   繁体   English

如何在Android中禁用Admob透明插页式广告?

[英]How to disable admob transparent interstitial ads in android?

when admob displays transparent interstitial ad it cleared my ui text content 当admob显示透明插页式广告时,它清除了我的ui文本内容

 <activity android:name="com.google.android.gms.ads.AdActivity"  android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:theme="@android:style/Theme.Translucent"/>

在此处输入图片说明

android:theme="@android:style/Theme.Translucent"

This line is responsible for the "transparency" of the background advertising. 该行负责背景广告的“透明度”。 You can customize it by specifying its subject or use one of the standard . 您可以通过指定主题使用标准之一 来对其进行自定义 For example: 例如:

android:theme="@android:style/Theme.Panel"

Good luck! 祝好运!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM