I'm trying to update an app I wrote a year or so ago and upgrade all calls to deprecated code. In one place, I was using a SimpleCursorAdapter in a ListView, and I'd like to replace that with a proper LoaderManager, for several reasons.
The problem is, that all the examples I've been able to find of using a LoaderManager actually still use SimpleCursorAdapter, even though it's deprecated. This includes the official documentation. Can anyone point me to the correct way to do this? I'm willing to update my ListActivity to a ListFragment if needed, and do whatever else is required. I just can't figure out how to use LoaderManager without falling back on deprecated classes.