Home > Software design >  How can I load image on Picasso?
How can I load image on Picasso?

Time:01-26

How can I load image on android studio by using Picasso libary. I tried it before but no image shown... Note: Libary implementation, Internet access permission everything I do correctly but nothing happened...

CodePudding user response:

Below is the example to load the image with Picasso.

 Picasso.with(mcontext).load(URLDecoder.decode(current.getImage(), "UTF-8"))
                .placeholder(R.drawable.program)
                .into(holder.imageView);

Share your code here so we can check.

  •  Tags:  
  • Related