Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to implement an AsyncTaskLoader in my project using the Compatibility Package, so I followed the Loader manual in Android Docs.

The problem is that the Loader does nothing, it seems loadInBackground() is never called

Any idea of what's wrong in my code? (ExpandableListFragment extends Fragment,but doesn't override any critical method )

Thank you :-)

/**EDIT:

I realized (late, I'm a moron) that AsyncTaskLoader is an abstract class so I need to subclass it... m(__)m I leave the question in case someone comes here behind me, who knows...

public class AgendaListFragment extends ExpandableListFragment implements
        LoaderManager.LoaderCallbacks<JSONArray> {

    private TreeMap<Integer, ArrayList<Evento>> mItems = new TreeMap<Integer, ArrayList<Evento>>();
    private AgendaListAdapter mAdapter;
    private ProgressBar mProgressBar;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View root = inflater.inflate(R.layout.fragment_agenda, container);
        mProgressBar = (ProgressBar) root.findViewById(R.id.loading);
        return root;

    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        mAdapter = new AgendaListAdapter(getActivity());
        setListAdapter(mAdapter);

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

    }

    @Override
    public Loader<JSONArray> onCreateLoader(int arg0, Bundle arg1) {
        mProgressBar.setVisibility(View.VISIBLE);
        return new AsyncTaskLoader<JSONArray>(getActivity()) {
            @Override
            public JSONArray loadInBackground() {

                return getDataFromService(AgendaServices.LISTADO_MES);

            }

        };
    }

    @Override
    public void onLoadFinished(Loader<JSONArray> loader, JSONArray data) {

        // Some stuff to turn JSONArray into TreeMap

        mProgressBar.setVisibility(View.GONE);
        mAdapter.setItems(mItems);

    }

    @Override
    public void onLoaderReset(Loader<JSONArray> arg0) {
        mAdapter.setItems(null);
        mProgressBar.setVisibility(View.VISIBLE);

    }

}
share|improve this question
1  
Your AsyncTaskLoader seems to be missing lots of stuff, like deliverResults(). I have two AsyncTaskLoader implementations in my LoaderEx project you might want to examine for comparison purposes: github.com/commonsguy/cwac-loaderex – CommonsWare Dec 22 '11 at 15:35
It seems I'm a mess and I didn't realize it's an abstract class... So now I know why I only found a few examples subclassing it. Thank you! – Wakka Dec 22 '11 at 15:44

3 Answers

up vote 37 down vote accepted

I think the best solution for the Compatibility package is to override the AsyncTaskLoader.onStartLoading method.

e.g.

@Override
protected void onStartLoading() {
  if(dataIsReady) {
    deliverResult(data);
  } else {
    forceLoad();
  }
}
share|improve this answer
I did this at the end :-D. Thanks! – Wakka Jan 12 '12 at 10:09
Yeah thanks david! Wrote this up into an post with source code: blog.blundell-apps.com/… – Blundell Oct 5 '12 at 10:41
1  
Checking for takeContentChanged seems an important step too. – Cheok Yan Cheng Mar 19 at 7:26

This is exactly a fix but it should work. I am pretty sure the compatibility library is broken. Try this:

getLoaderManager().initLoader(0, null, this).forceLoad();
share|improve this answer
This is another way to do it :-D. – Wakka Dec 27 '11 at 8:51
3  
This would work, but it's probably better practice to implement your Loader<D> properly (as davidshen84 suggests, by implemenitng the onStartLoading() method) instead of calling forceLoad() directly in your Activity and/or Fragment. – Alex Lockwood Jul 9 '12 at 3:24

Looking at discussion at https://code.google.com/p/android/issues/detail?id=14944, checking for takeContentChanged seems to be important step too.

protected void onStartLoading() {
    if (mCursor != null) {
        deliverResult(mCursor);
    }
    if (takeContentChanged() || mCursor == null) {
        forceLoad();
    }
}
share|improve this answer
There is no point in using takeContentChanged here - it won't affect result. If mCursor is null - forceLoad will be called. If it is not - deliverResult will be called. – Dmitry Zaitsev Mar 27 at 14:05
Why do you say takeContentChanged has no point? developer.android.com/reference/android/content/… Google's example does make use of that. – Cheok Yan Cheng Apr 1 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.