Re: [android-developers] Improve data retriveing time from server.

2013-03-19 Thread sree android
Thakyou for your answer . -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Improve data retriveing time from server.

2013-03-19 Thread bob
Yes, it sounds like you want to *gzip* the data. On Monday, March 18, 2013 8:52:53 AM UTC-5, Kristopher Micinski wrote: There's not really any way to speed up the transfer. If there is some application specific compression you can do, you might try that, but otherwise it's basically

Re: [android-developers] Improve data retriveing time from server.

2013-03-19 Thread Kristopher Micinski
That won't necessarily help: the lower layers already includes compression On Mar 19, 2013 10:34 AM, bob b...@coolfone.comze.com wrote: Yes, it sounds like you want to *gzip* the data. On Monday, March 18, 2013 8:52:53 AM UTC-5, Kristopher Micinski wrote: There's not really any way to speed

Re: [android-developers] Improve data retriveing time from server.

2013-03-19 Thread Kristopher Micinski
At least in headers, compressing data may be possible if what you're doing is file oriented. Still many cases of this scenario aren't amenable to compression... What kind of data are you sending? Kris On Mar 19, 2013 2:08 PM, Kristopher Micinski krismicin...@gmail.com wrote: That won't

[android-developers] Improve data retriveing time from server.

2013-03-18 Thread sree android
Hi friends, i am developing CRM application in android,but when retriveing data from server it is take much time for displaying data on device.How can i improve thid problum. *For Example.* In Server has 100 records,when i am retriveinng these records i need to display with in the fraction of

Re: [android-developers] Improve data retriveing time from server.

2013-03-18 Thread Kristopher Micinski
There's not really any way to speed up the transfer. If there is some application specific compression you can do, you might try that, but otherwise it's basically impossible. Kris On Mon, Mar 18, 2013 at 7:26 AM, sree android android.sreeni...@gmail.com wrote: Hi friends, i am developing