Grokking Android

Getting Down to the Nitty Gritty of Android Development

Posts tagged “initLoader()”:

How to Use Loaders in Android

By

With the introduction of Honeycomb Loaders became the preferred way to access data of databases or content providers. They load data asynchronously and notify listeners when the results are ready. Google did not only introduce Loaders but also deprecated the previous way to handle a Cursor within your activities. You shouldn’t use startManagingCursor() or managedQuery() […]  Continue Reading  “How to Use Loaders in Android”