CarolP
CarolP

Reputation: 1

Image loading with JSON service

I have an app where people can set pictures as wallpaper but its really slow because pictures are very big. This app load pictures and then when i want to see it again it has to load again. What to do to make it faster? I use Json service. My pictures are from server. i am using universal image loader.

Upvotes: 0

Views: 73

Answers (1)

Renato Probst
Renato Probst

Reputation: 6054

Theres 2 types of cache in android, the memory cache and the disk cache. You should use picasso its a library that implement both and is very easy to use (1 line of code).

Upvotes: 1

Related Questions