android notifyDataSetChanged不管用

被刻印的时光 ゝ 提交于 2020-03-28 11:44:24


代码很简单 如下:
java代码:

SimpleCursorAdapter sca = new SimpleCursorAdapter(ClassBaseActivity.this, R.layout.content_item, cursor, new String[]{"name"}, new int[]{R.id.content_text});


我建立了一个SimpleCursorAdapter 我的crusor发生的变化 增加或者删除了一条数据 这时 我就需要更新SimpleCursorAdapter ,然后 我就这样写了:
java代码:
   

sca.notifyDataSetChanged();


但是 不行 ui没有变化

后来 上网找 说是数据源必须改变了  
java代码:

    cursor = cs.getAll();
 sca.notifyDataSetChanged();

 


然后 我就重新获得了crusor 但是依然不行

最后 终于在网上找到 必须告诉SimpleCursorAdapter 我们改变了数据源 也就是:
java代码:

    cursor = cs.getAll();
                       sca.changeCursor(cursor);
                       sca.notifyDataSetChanged();

 


这样 就ok 了

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!