如何知道某人何时点击了广告视图?

发布于 2024-11-08 00:16:15 字数 76 浏览 0 评论 0原文

我在我的应用程序中使用广告视图,并想知道何时有人点击了该广告视图! 我怎样才能做到这一点? onclicklistener 似乎不起作用。

I'm using an adview in my application and want to know when someone has clicked that Adview!
How I can do that?
The onclicklistener does not seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

江湖彼岸 2024-11-15 00:16:15

您可以这样设置侦听器:

adView.setAdListener(this);

然后实现:

@Override
public void onPresentScreen(Ad arg0) {
//OnClick here
}

You can set the listener this way:

adView.setAdListener(this);

And then implement this:

@Override
public void onPresentScreen(Ad arg0) {
//OnClick here
}
悲喜皆因你 2024-11-15 00:16:15

点击是在 AdMob API 内部处理的,我认为没有办法完成您对 API 的要求,因为它违反了 TOS 使用“通过点击 X 数量的广告来解锁功能”模型。因此,我不认为它在 onclicklistener 所在的 API 中可用。

The click is handled inside of the AdMob API, and I don't think there is a way to do what you are asking with the API as its against the TOS to use a "unlock feature by clicking X number of ads" model. For that reason I don't believe it is available in the API where the onclicklistener is.

骑趴 2024-11-15 00:16:15

试试这个

 mAdView.setAdListener(new AdListener() {
                @Override
                public void onAdOpened() {
                    super.onAdOpened();

                }
            });

Try this

 mAdView.setAdListener(new AdListener() {
                @Override
                public void onAdOpened() {
                    super.onAdOpened();

                }
            });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文