请将AdActivity主题设置为@android:style/Theme.Translucent以启用透明背景插页式广告

rem*_*ada 10 android ads manifest interstitial mopub

我在日志中收到上述消息,因此,我认为我没有尽可能多的插页式广告.我已经使用以下行更新了我的清单

    <activity android:name="com.millennialmedia.android.MMActivity" 
         android:theme="@android:style/Theme.Translucent.NoTitleBar" 
         android:configChanges="keyboardHidden|orientation|keyboard" />
Run Code Online (Sandbox Code Playgroud)

但我仍然得到这个错误.显然,我需要做一些其他工作来实现这个目标.

有任何想法吗?

Eld*_*tov 30

也许您需要在清单文件中添加AdActivity?

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

并设置主题吗?


Man*_*til 5

将android:theme ="@ android:style/Theme.Translucent"添加到清单文件中.跟随后一样

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