How to make Picasso load images faster?
问题 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