9

Switching from a RecyclerView.Adapter to a CursorAdapter in my Android app...

Comments
  • 1
    CursorAdapter?! Sounds new to me.... wud be great if you throw some light on it! ;)
  • 2
    "TODO cry..."
  • 1
    @balamu96m Its a particular Adapter that gets data from a Cursor and provides it to a ListView or a RecyclerView.
    A Cursor is an Object that allows to manage a SQLiteDatabase.
    In this way I can display in a list a set of data from a local database, and every database modifications, with the propers Listeners, can be reflected in the displayed list.
  • 1
    Cool thanks!
Add Comment