I am creating an Android app (API 8) that need to receive a lot of data when the user connect for the first time.
The App is an Catalog/Items based app where the Items contains huge text.
In the Web Database I have more than 1000 records and about 8MB of data to transfer.
What the best solution for that ?
I tried XML file but the device sometimes freeze try to parse these data and I lost the connection.
Regards,
RG
That is a large amount to transfer via XML.
What if you requested it, say, 10 records at a time and stop when no more results are returned?
Also — make sure you’re doing it on a background thread (AsyncTask)!!