需要帮助从列表视图中删除所选项目
我想从列表视图中删除选定的项目; 实际上我想从上下文菜单中执行此操作。一切都很顺利,但我无法删除该项目。
请给我一些从列表视图中删除项目的建议或示例
I want to delete a selected item from the list view;
actually I want to perform this operation from the context menu. Everything is going fine but I'm not able to delete that item.
Please give me some suggestions or examples to remove item from the listview
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在我的代码中使用了这样的方法,它可以从列表中删除多个项目
然后我声明了一个“删除”按钮,并在其 On ClickListener 方法上调用数据库中的代码(在您的情况下,它可能是 Arraylist或数组)删除在Arraylist“select_archived_party”中选择的项目。希望它有帮助:-)
I have used like this in my code, it can delete multiple items from the list
Then I've declared one button of "Delete" and on it's On ClickListener method, it calls the code from the database(In your case it may be Arraylist or array) to delete the items selected in Arraylist "select_archived_party". Hope it helps :-)