我正在制作一个简单的记事本应用程序。In one fragment there's a list view of added notes and when some note is selected the other fragment shows the details of that note. 现在,如果用户单击删除按钮,则会删除一条注释,但是如何相应地刷新列表视图和详细视图?
问问题
40 次
1 回答
1
为了刷新ListView
实际上你必须刷新的是底层Adapter
。
这将是您的场景的工作流程:
- 移除所选项目
- 称呼
notifyDataSetChanged()
- 将另一个项目设置为当前项目,例如上一个音符或第一个音符。
就是这样。
于 2013-08-19T19:32:37.693 回答