Android 禁用 webview 输入
我有一个布局,其中包含 Web 视图和 Web 视图顶部的各种 UI 元素。这是一个相对布局。
目前,无论 webview 顶部可见多少元素,所有滚动都会滚动 webview,它仍然可以接受点击等。我想有条件地禁用
我正在使用的 webview 的这些功能 myWebview.setClickable(false)
但这似乎没有效果,
请理解
I have a layout that features a webview and various UI elements on top of the webview. This is a relativelayout.
Currently, no matter how many elements are visible on top of the webview, all scrolling will scroll the webview, it can still accept clicks and more. I want to conditionally disable these features of the webview
I am using myWebview.setClickable(false)
but this seems to have no effect
insight appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对此没有信心,但也许强制 WebView 放弃焦点就可以了。尝试
myWebview.clearFocus()
。让我知道这是否有效。我现在不在电脑前,不然我就知道了。 :)I'm not confident about this, but perhaps forcing the WebView to drop its focus will do. Try
myWebview.clearFocus()
. Let me know if that worked or not. I'm not at my computer right now, otherwise I would know. :)