Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
notifyDataSetChanged();当 myadapter 扩展 baseAdapter 时,我想在活动中刷新我的 arrylist 时,谁能告诉我如何使用函数!
notifyDataSetChanged();
多谢 ...
当您的数组的数据发生更改时,您可以调用 adapter.notifyDataSetChanged(); 将刷新您的listview的数据。
adapter.notifyDataSetChanged();
您需要添加
lviewAdapter.notifyDataSetChanged();
在这里您可以找到详细信息。
检查这个