Here using an adapter to load the images in the RecyclerView and here is the code I am using to load the Image from the URL
Picasso.with(context)
.load("IMAGE URL")
.placeholder(R.drawable.placeholder)  
.error(R.drawable.error)     
.into(holder.stud_photo);