滑动删除安卓
我有一个列表视图,它是从数据库填充的。我想删除一个项目,删除该项目后显示同一活动中所有项目的其余部分,并且刚刚更改了用户界面。
任何人都可以有更好的主意或者任何人都可以帮助我。
感谢和问候 麦杜尔·伊斯兰
I have a list view and it is populated from database.I want to delete a item ,after delete this item show the rest of all item in same activity and just changed ui.
Can anyone have better idea or can anyone help me.
Thanks and Regards
Md Maidul Islam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用处理程序它将帮助您
在删除列表项时调用处理程序。
使用此代码调用处理程序
use handler it will help u
call the handler when u delete list item..
use this code call the handler
为此,您只需在删除记录后通知数据集适配器即可。
像
YourAdapter.notifyDataSetChanged();
下面的代码将数据设置到Listview中。
首先声明适配器。
因此,当您删除记录时,您只需通知适配器即可。
For that you need to just notify the data set adapter after delete record.
Like
YourAdapter.notifyDataSetChanged();
Below code set the data into Listview.
First Declare adapter.
So when ever you delete record you just have to notify the adapter.