[Solved] The best way to get images from a webpage to display on a android app image view? [closed]


  1. Picasso allows for hassle-free image loading in your application—often in one line of code.

    Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
    
  2. Glide, An image loading and caching library for Android focused on smooth scrolling.

    Glide.with(this).load("http://i.imgur.com/DvpvklR.png").into(imageView);
    

1

solved The best way to get images from a webpage to display on a android app image view? [closed]