I use Picasso (image downloading library for Android). Picasso website
I charge my image like this:
Picasso.get().load("http://i.imgur.com/myImage.png").into(imageView);
But, if myImage.png
is too big, the download become slow. (With bad internet connection of course)
How to make Picasso load images faster?
Can I just make the quality lower by Picasso? Or can I charge them "early" a few seconds before using them?
Note that I cannot touch the file myImage.png
---------------------
EDIT
Any idea how to charge an image "early"? Should I use invisible view and load image into it, then use the same image in my View? How to add an image to cash (By Picasso always)?