禁用 Android 列表视图
我有一个带有列表视图的视图和几个其他视图,包括一个按钮和一些编辑文本。我希望列表视图可滚动,但按下按钮后不可单击。 有什么建议吗?
I have a view with a listview and several other views including a button and a few edittexts. I want the listview to be scrollable but not clickable after i press the button.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会添加一个字段,例如:
然后我会进入 onClick 方法并添加类似的内容,
然后要再次接受点击,您首先必须再次将 clicked 设置为 false,然后继续接受点击。
I would add a field, something like:
I would then go into the onClick method and add something like
then to accept a click again you would first have to set clicked to false again, and then continue to accept clicks.
您需要通过将 setOnClickListener 调用为 null 来禁用列表视图的点击侦听器,@Aaron Decker 的解决方案也很好:-)
You need disable the clicklisteners for the listview by calling setOnClickListener to null , @Aaron Decker's solution is good too :-)