I have an image contents byte[] form. But when i load them through Glide then broken images are shown. what I\'m doing is shown below.
Glide.with(context)
You can convert Base64 String to image using the following
Base64
Glide.with(context) .load(Base64.decode(base64ImageString, Base64.DEFAULT)) .asBitmap() .placeholder(R.drawable.ic_broken) .into(rowImageView);