I am reading google doc and I found these lines, But I am unable to understand the difference between these two statements Why asynctask precessing is direct and loader processing indirect?
There are several ways to do background processing in Android. Two of those ways are:
- You can do background processing directly, using the AsyncTask class.
- You can do background processing indirectly, using the Loader framework and then the AsyncTaskLoader class.