notifyDataSetChanged方法失效的常见原因

时间:2023-01-19 16:23:18

举个例子:
if (gridViewAdapter == null) {
gridViewAdapter = new GridViewAdapter(teamPerson, context);
 gv_team_contents.setAdapter(gridViewAdapter);
} gridViewAdapter.setData(teamPerson);
  

notifyDataSetChanged()是在setData中执行的,但是结果是没有效果而且什么变化也没有,

导致很多人在很多处添加notifyDataSetChanged(),最后导致程序崩溃或者卡顿或者仍然没有效果。

最后我是这样解决的

if (gridViewAdapter == null) {
gridViewAdapter = new GridViewAdapter(teamPerson, context);
 }  
gv_team_contents.setAdapter(gridViewAdapter);
gridViewAdapter.setData(teamPerson);
这样就可以了