What is "android-loader"
The Loaders
have the following characteristics::
- Are available throughout
Activity
andFragment
. - They provide asynchronous data loading.
- They monitor the data source and deliver new results as content changes.
- Automatically reconnect to the last Cursor* when they are recreated after a configuration change. With this, they do not need to query the data again.
*Only for CursorLoader
.