應用程序中的插頁式加載並在您關閉應用程序後顯示。如何防止呢? interstital沒有像cancle或destroy這樣的方法。實際上有一種方法可以在應用程序關閉後禁用顯示admob的interstital橫幅嗎?
是唯一的解決方案interstital = null; ???
應用程序中的插頁式加載並在您關閉應用程序後顯示。如何防止呢? interstital沒有像cancle或destroy這樣的方法。實際上有一種方法可以在應用程序關閉後禁用顯示admob的interstital橫幅嗎?
是唯一的解決方案interstital = null; ???
我不確定可能有哪些方法可用,但是您可以輕易阻止它。
如果可能,您可以在活動中完成調用。
如果不是,只需設置一個標誌(boolean)並使用onPause或onStop事件將其設置爲false,請在調用插頁式廣告中的show()之前檢查此標誌。
if (your_fancy_new_flag)
{
//show the interstitial
}
只有當您明確呼叫show()
時,纔會顯示插頁式廣告。
所以只是不要撥打show
我打電話完成,但它無論如何發生。我認爲你的國旗解決方案是最好的方法。 –