如何阻止 onNewPicture() 的泛滥?
在我的小型应用程序中,我在第一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦您不再需要收到通知,我就会立即在
WebView
上调用setPictureListener(null)
。请注意,
PictureListener
已被标记为已弃用,但我完全不知道用什么来取代它。Off the cuff, I would call
setPictureListener(null)
on theWebView
, 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.