[android-developers] Re: Cache issue

2011-10-25 Thread skink


On Oct 25, 5:41 pm, NAVI NEW  wrote:
> Please some one give me best idea for this issue.
>
>
>
> On Tue, Oct 25, 2011 at 8:04 PM, NAVI NEW  wrote:
> > Hello Sir,
>
> > I am downloading  200 images and saving  sdcard form server but now
> > facing time issue taking more time.
>
> > i want to store  permanently image in cache and handle them always
> > please help me.
>
> > i am not getting perfect solution how to store image in cache for
> > handle .
>
> > --
> > 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
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

best idea is just to write it to the sdcard and read it again to speed
things out.

what did you try so far?

pskink

-- 
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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Cache issue

2011-10-25 Thread NAVI NEW
I have already implemented this one,

that's running but not gatting way for all

http://www.flexjockey.com/2011/03/create-a-pretty-simple-cache-for-android/

On Tue, Oct 25, 2011 at 9:29 PM, skink  wrote:

>
>
> On Oct 25, 5:41 pm, NAVI NEW  wrote:
> > Please some one give me best idea for this issue.
> >
> >
> >
> > On Tue, Oct 25, 2011 at 8:04 PM, NAVI NEW  wrote:
> > > Hello Sir,
> >
> > > I am downloading  200 images and saving  sdcard form server but now
> > > facing time issue taking more time.
> >
> > > i want to store  permanently image in cache and handle them always
> > > please help me.
> >
> > > i am not getting perfect solution how to store image in cache for
> > > handle .
> >
> > > --
> > > 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
> > > android-developers+unsubscr...@googlegroups.com
> > > For more options, visit this group at
> > >http://groups.google.com/group/android-developers?hl=en
>
> best idea is just to write it to the sdcard and read it again to speed
> things out.
>
> what did you try so far?
>
> pskink
>
> --
> 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
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: Cache issue

2011-10-26 Thread Studio LFP
The way you cache and access that cache can change depending on how you 
display the items.

If you have that many images, you may want to make thumbnails of them and 
display those first. This would speed up load times. You could load and 
hold onto the reference to the full image as the user selected them.

Remember you are working in an environment that there will be no way the 
user can look at all 200 of your full size images at the same time, so plan 
accordingly. Without knowing what you are trying to accomplish, there's not 
a lot more we can help you with.

Steven
Studio LFP
http://www.studio-lfp.com


On Tuesday, October 25, 2011 11:43:36 AM UTC-5, NAVI NEW wrote:
>
>
> I have already implemented this one,
>
> that's running but not gatting way for all
>
> http://www.flexjockey.com/2011/03/create-a-pretty-simple-cache-for-android/
>
> On Tue, Oct 25, 2011 at 9:29 PM, skink  wrote:
>
>>
>>
>> On Oct 25, 5:41 pm, NAVI NEW  wrote:
>> > Please some one give me best idea for this issue.
>> >
>> >
>> >
>> > On Tue, Oct 25, 2011 at 8:04 PM, NAVI NEW  wrote:
>> > > Hello Sir,
>> >
>> > > I am downloading  200 images and saving  sdcard form server but now
>> > > facing time issue taking more time.
>> >
>> > > i want to store  permanently image in cache and handle them always
>> > > please help me.
>> >
>> > > i am not getting perfect solution how to store image in cache for
>> > > handle .
>> >
>> > > --
>> > > You received this message because you are subscribed to the Google
>> > > Groups "Android Developers" group.
>> > > To post to this group, send email to android-d...@googlegroups.com
>> > > To unsubscribe from this group, send email to
>> > > android-develop...@googlegroups.com
>> > > For more options, visit this group at
>> > >http://groups.google.com/group/android-developers?hl=en
>>
>> best idea is just to write it to the sdcard and read it again to speed
>> things out.
>>
>> what did you try so far?
>>
>> pskink
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-d...@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-develop...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>

-- 
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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en