如何阻止 onNewPicture() 的泛滥?

发布于 2024-12-10 22:31:52 字数 574 浏览 1 评论 0原文

在我的小型应用程序中,我在第一个 onNewPicture()

但是 WebView 的 PictureListener 不断用 onNewPicture() 回调轰炸我的应用程序...尽管 WebSettings.setBlockNetworkImage() 设置为 true

有没有办法告诉WebView停止监听/发送/处理onNewPicture()s?

In my tiny application, I get what I need from a web page after the first onNewPicture().

But WebView's PictureListener keeps bombarding my application with onNewPicture() callbacks... This is despite WebSettings.setBlockNetworkImage() set to true.

Is there a way to tell WebView to stop listening/sending/processing onNewPicture()s?

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

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

发布评论

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

评论(1

平安喜乐 2024-12-17 22:31:52

有没有办法告诉 WebView 停止监听/发送/处理 onNewPicture()s?

一旦您不再需要收到通知,我就会立即在 WebView 上调用 setPictureListener(null)

请注意,PictureListener 已被标记为已弃用,但我完全不知道用什么来取代它。

Is there a way to tell WebView to stop listening/sending/processing onNewPicture()s?

Off the cuff, I would call setPictureListener(null) on the WebView, once you no longer need to be notified.

Note that PictureListener is marked as deprecated, though off the top of my head I have no idea what is replacing it.

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