从查看器中删除项目
我正在为我的列表视图使用 viewHolder 和 Layout Inflater。我什至在列表视图中显示的图像上也实现了单击。我只是想知道如何使用持有者删除整行,因为我无法使用 remove()
函数。
有什么建议吗?
I am using viewHolder and Layout Inflater for my listview. I have implemented on click even on the image that is displayed in my listview. I just want to know that how can I delete an entire row using the holder because I am unable to use the remove()
function.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过从
Adapter
中删除该元素,然后更新ListView
/<,可以删除ListView
/RecyclerView
中的行。代码>RecyclerView与notifyDataSetChanged()
Rows in
ListView
/RecyclerView
s are deleted by removing that element from theAdapter
and then updating theListView
/RecyclerView
withnotifyDataSetChanged()