Best Way to Refresh Adapter/ListView on Android

来源:互联网 发布:非苹果电脑安装mac os 编辑:程序博客网 时间:2024/05/18 02:34

My book, "Hello Android" gives this as a way of using a custom db helper, setting up a cursor, and then setting up an adapter as follows:

Cursor cursorCustomDatabaseHelper test = new CustomDatabaseHelper(this);try {        cursor = getData();        showData(cursor);} finally {        test.close();}

With this however, everytime I need to refresh the data set, I need to keep running this block of code (which gets a bit difficult inside an onClick() for a button due to "this" not being available.

Is this the best way to refresh the data set, or should I look towards removing the .close and issue an adapter.notifyDataSetChanged()? If I do this, sometimes I get a force close as (and I can't remember at the moment) but sometimes it cannot Delete properly - I think this may be because the database is currently open and it tries to open again.

Should we also be declaring the variables for the Cursors, DatabaseHelpers and Adapter in the Class (outside of the OnCreate) so that they are accessible to all the functions?

I realise this is just poor programming at this stage, but Im trying to get some pointers as to the best way of doing things.


3 Answers


You should use adapter.notifyDataSetChanged().



simply add these code before setting Adapter it's working for me

listView.destroyDrawingCache();listView.setVisibility(ListView.INVISIBLE);listView.setVisibility(ListView.VISIBLE);


Following code works perfect for me

EfficientAdapter adp = (EfficientAdapter) QuickList.getAdapter();adp.UpdateDataList(EfficientAdapter.MY_DATA);adp.notifyDataSetChanged();QuickList.invalidateViews();QuickList.scrollBy(0, 0);


转载:http://stackoverflow.com/questions/4194124/best-way-to-refresh-adapter-listview-on-android

原创粉丝点击