I've been looking at examples of CursorAdapter implementations to make sure I'm doing everything right.
One thing I've noticed that I'm not doing is calling changeCursor(null) on my CursorAdapter in the Activity's onStop() handler.
mAdapter.changeCursor(null);
What is the purpose of this? I'm willing to do it if there's a good reason, but I hate navigating to another Activity, backing up to this Activity, and seeing a blank screen for a second until a new Cursor is queried.