I have to show a drawable from res into an ImageView. In this app, I\'m using Picasso for some reasons.
drawable
res
ImageView
In this case, I need t
If the images is in your drawable folder then you can just load it.
Picasso.with(context).load(R.drawable.drawableName).into(imageView);
and picasso will load it no need for an Uri.