I was just wondering which is the best way to fetch data from a web service using HTTP request. Using AsyncTask or AsyncTaskLoader
I'm using AsyncTaskLoader using LoaderManager on the activity but I encounter problems when there are configuration changes most especially orientation changes. It stops the loader from calling OnFinish().
I've also tried AsyncTask which is more flexible and independent, works well on my previous project which was still on 2.2? Since AsyncTaskLoader is more recommended in 3.0---4.0 I'd appreciate your opinions.