I have an homepage in my app android
This homepage needs information from an external database
I thought in first place to use ASyncTask to load m information, but I think it's not best solution
because I have 2 ListView
First ListView (that has always 2 childs) queries an external database for previous information, and after that needs to load from web Image to load in an ImageView
Second ListView (3 childs) needs only one query to have all information to load data..
but now, how can I achieve this?
ASyncTask can run just for first information, can't it?
There's another way to load all information?