In my ListView Activity, using LoaderManager to manager cursor and also have a Custom CursorAdapter

mAdapter = new CustomCursorAdapter(getActivity(), null,CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
setListAdapter(mAdapter);

While registering the Adapter, a null cursor is passed which is managed by LoaderManager

getLoaderManager().initLoader(3, null, this);

Now need to implement SectionIndexer for this CustomCursorAdapter. My problem is that in the CustomCursorAdapter constructor the cursor initially will be null, how do I know when I have the Cursor ready.

There is a

getCursor();

method that is available to get the cursor in CursorAdapter, but in which call back method I know for sure that LoaderManager has finished loading the Cursor with data is ready to be manipulated

thanks

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.