Issue
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...
Solution
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.
Answered By - Indthu dev
Answer Checked By - David Marino (JavaFixing Volunteer)