2

I read about Picasso image downloading lib but there is one problem that I can't resolve it. It's large image downloading. When I have large image i.e 2000 x 1920 it's crushed (out of memory).

How could I solve this problem?

Picasso.with(context).load(myUrl).into(imageView);

pmb
  • 2,327
  • 3
  • 30
  • 47

1 Answers1

7

Try

Picasso.with(context).load(url).resize(width, height)
Pasquale Anatriello
  • 2,355
  • 1
  • 16
  • 16