如何禁用列表视图中的子项(使其颜色变为灰色且不可点击)
在我的应用程序中,有一个列表视图,单击它的每个项目都会导致一个操作。
但在某些情况下,某些操作无法进行。
如何禁用列表视图中的子项目(使其颜色变为灰色且不可点击)?
in my application, there is a listview, and clicking each item of it leads to an operation.
but in some situation, some operation can not be done.
how to disable a child item in a listview (make its color gray and unclickable)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在适配器中覆盖 isEnabled 。只需跟踪您想要禁用的项目并为其返回正确的值即可。
You should override isEnabled in your adapter. Just keep track of the items you want to disable and return the correct value for them.