I'm developing an Android app with such a small social network to exchange messages in real time (google gcm) and profiles of registered users. Until now to update the data of the users use an AsyncTask that fetches the data and images from the server and displays it in the profile. Downloading data, however, this will become very slow if there are many images etc.. is there a way to get this information more quickly and place them in the layout xml?
Asked
Active
Viewed 101 times
1 Answers
0
Yes if there are images it will slow down the process. You can however download the data through async task only in which you can download the data part. For images there is a concept called lazy loading i.e. download as required. For that you can use the already available libraries provided.

CodeWarrior
- 5,026
- 6
- 30
- 46