Not Getting Notified On Pagedlist Updates
I am using the PagedList library in my app. It all works as expected, using the PagedListAdapter. However, I am not able to find how I can get a callback and be notified that the
Solution 1:
You can use PagedList.addWeakCallback
. You can pass a PagedList.Callback
to it and listen to events such as onInserted
, onChanged
or onRemoved
. More detail can be found in this answer
Post a Comment for "Not Getting Notified On Pagedlist Updates"