gpt4 book ai didi

android - 在 Google Analytics 中跟踪 Admob 事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:59:00 25 4
gpt4 key购买 nike

是否可以跟踪用户点击 Google Analytics 中的广告的 Admob 事件。

我使用 AdMob 来展示广告。我想在 Google Analytics 中跟踪对广告的每次点击。如何设置事件

最佳答案

我找到了解决方案。

为您的 Activity 实现 AdMob 接口(interface) AdListener

public interface AdListener {
public void onReceiveAd(Ad ad);
public void onFailedToReceiveAd(Ad ad, AdRequest.ErrorCode error);
public void onPresentScreen(Ad ad);
public void onDismissScreen(Ad ad);
public void onLeaveApplication(Ad ad);
}

然后为 AdView 元素设置监听器。

adView.setAdListener(this);

并覆盖 onPresentScreen 方法以在用户点击广告时跟踪事件。

onPresentScreen - Called when an Activity is created in front of your app, presenting the user with a full-screen ad UI in response to their touching ad.

private GoogleAnalyticsTracker tracker;
...
@Override
public void onPresentScreen(Ad arg0) {
tracker.trackEvent(
"AdMob", // Category
"AdView", // Action
"Clicked", // Label
1); // Value
}

关于android - 在 Google Analytics 中跟踪 Admob 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11308411/

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