[android-developers] Re: List Data

2011-08-29 Thread Samuel
You can save parted data in local, if the list you want to load isn't in local, then you can download the list data from server. On Aug 25, 5:44 pm, Sivaprakash wrote: > Hi > > I have a 200 different list (each list might have 200 items) size of the > each list will be 100 KB that need to be loa

[android-developers] Re: List Data

2011-08-29 Thread Samuel
You can merge above two mechanism, you can store the total date in server, but parted "significant" data store in local using SQLite, you can update dynamically the local list date table from server using some strategy. On 8月25日, 下午5时44分, Sivaprakash wrote: > Hi > > I have a 200 different list (e

[android-developers] Re: List Data

2011-08-25 Thread lbendlin
this depends entirely on your user expectations. Are they willing to wait while the list is fetched? Can you predict which list they will look at first, next etc? (In that case you could do prefetching) Are these users on a mobile data plan? How often does the data change on the server? -- Yo