How to refresh a ListView to requery its cursor to repopulate its data and its views

后端 未结 4 828
孤街浪徒
孤街浪徒 2021-01-12 04:03

I have a ListView which uses a CursorAdatper as its adapter. I would like to have the list view to

  • requery its data
  • refresh its view once the requery
4条回答
  •  -上瘾入骨i
    2021-01-12 04:32

    I know this answer is probably too late but fyi to others, if you are using a cursor loader (as you probably should do instead), just do

    getContext().getContentResolver().notifyChange(uri, null);

    where uri is the same uri used for the cursor loader.

提交回复
热议问题