gpt4 book ai didi

android - 如何知道我的 vungle 广告是否完全被用户看到?

转载 作者:行者123 更新时间:2023-11-29 01:08:53 26 4
gpt4 key购买 nike

我在我的应用程序中使用了一个 vungle 应用程序 ID,我想增加用户的钱包,前提是视频广告完全被用户看到。

//我 Activity 中的代码

  final VunglePub vunglePub = VunglePub.getInstance();
final String app_id= "58d46c1feba9a90a1a000011"; //vungleid
vunglePub.init(this,app_id);
final EventListener vungleListener= new EventListener() {
@Override
public void onAdEnd(boolean b, boolean b1) {
Update();
}
};

我正在尝试通过从监听器的 onAdEnd 方法调用 Update 方法来更新用户的钱包,但即使用户关闭广告,它也会更新钱包。

我是第一次尝试 vungle,也搜索了很多但没有得到我的答案。对此有任何帮助表示赞赏。谢谢!..

最佳答案

我是 Gabor,在@Vungle 担任集成工程师。

您可以在此处查看我们的文档,了解如何使用事件监听器。 https://support.vungle.com/hc/en-us/articles/204463100-Advanced-Settings-for-Vungle-Android-SDK

上面推荐的onVideoView()被删掉了,你应该使用

@Override
public void onAdEnd(boolean wasSuccessfulView, boolean wasCallToActionClicked) {
// Called when the user leaves the ad and control is returned to your application
// if wasSuccessfulView is true, the user watched the ad and should be rewarded
// (if this was a rewarded ad).
// if wasCallToActionClicked is true, the user clicked the call to action
// button in the ad.
}

如果广告完全由用户完成,则 wasSuccessfulView bool 值将为真。

如果您有更多问题,请随时通过 tech-support@vungle.com 与我们联系,我们将为您提供帮助。

嘉宝

关于android - 如何知道我的 vungle 广告是否完全被用户看到?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44774717/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com