Hi after extended from SherlockFragmentActivity the lists become slow. So the architecture I'm using is the following: I have:
1.SherlocFragment activity where I display the list
2.Adapter to display the list
3.AsyncTask to fetch json form the server
So I'm not using loaders or fragments or ListActivity.
I have been looking at this answer https://stackoverflow.com/a/11779941/1796624 that suggest to inflate the list in a background thread, but I don't quite understand how to do it. What will be your suggestion,do I need to use loaders to improve performance and if so please suggest a nice tutorial or should I put the list in a fragment or maybe there is a new design pattern that you can suggest to speed up things. Thanks