"onAdLeftApplicationDone" 的活动?
Event for "onAdLeftApplicationDone"?
AdMob 新手,刚刚实现了我的第一个 InterstitialAd,并且运行良好。
因此,如果您查看 this official documentation 以获得 "AdListener",
您会看到 "onAdLeftApplication()"-Event:
的描述
public void onAdLeftApplication ()
Called when an ad leaves the application (e.g., to go to the browser).
现在我想知道如何触发 "onAdRETURNSAfterLeftApplication"-kinda return 事件。我知道有 "onResume(), onPause()",但这对我的目的来说不够精确。当那个 Call 没有相反的事件时,有 "onAdLeftApplication()" 有什么关系?对我来说没有意义:/
public void onAdClosed ()
Called when the user is about to return to the application after clicking on an ad.
不需要“onAdRETURNSAfterLeftApplication”,因为 onAdClosed() 回调会处理它。
AdMob 新手,刚刚实现了我的第一个 InterstitialAd,并且运行良好。
因此,如果您查看 this official documentation 以获得 "AdListener", 您会看到 "onAdLeftApplication()"-Event:
的描述public void onAdLeftApplication ()
Called when an ad leaves the application (e.g., to go to the browser).
现在我想知道如何触发 "onAdRETURNSAfterLeftApplication"-kinda return 事件。我知道有 "onResume(), onPause()",但这对我的目的来说不够精确。当那个 Call 没有相反的事件时,有 "onAdLeftApplication()" 有什么关系?对我来说没有意义:/
public void onAdClosed ()
Called when the user is about to return to the application after clicking on an ad.
不需要“onAdRETURNSAfterLeftApplication”,因为 onAdClosed() 回调会处理它。