Right now I am using CursorAdapter to populate my listview by getting the cursor data from my sqlite database. I am able to load the listview. I am able to add, edit or delete an item which also reflects in database. But when I do so the listview does not reflect it in the UI until i reload the app or activity.
I surfed a lot and found that I can achieve what I want using CursorLoader and LoaderManager. But I don't know that how to use them with CursorAdapter.