从查看器中删除项目

发布于 2024-11-19 08:44:03 字数 138 浏览 3 评论 0原文

我正在为我的列表视图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一片旧的回忆 2024-11-26 08:44:03

通过从 Adapter 中删除该元素,然后更新 ListView/<,可以删除 ListView/RecyclerView 中的行。代码>RecyclerView与notifyDataSetChanged()

Rows in ListView/RecyclerViews are deleted by removing that element from the Adapter and then updating the ListView/RecyclerView with notifyDataSetChanged()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文