Picasso load drawable resources from their URI

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.

Leave a Comment