AbstractCursorLoader | Christian Göllner
The CursorLoader in the Android framework is very useful. It allows you to load data in the background, without having to worry about activity lifecycles or data updates. It does all the work for you. The only downside (for me) is, that it has to be used with a ContentProvider. Since I don’t want to create a ContentProvider, just to be able to use the CursorLoader, I modified the CursorLoader class a bit, in order for you to be able to use it normally with or without ContentProvider.
Continue Reading
Join the Discussion