First you need to convert the Base64 encoded string to a bitmap. Below is a snippet of code from a related question:
byte[] decodedString = Base64.decode("Your Base64 String", Base64.DEFAULT); Bitmap bitMap = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
When this is done, you have a bitmap in bitmap Assuming your imageView is defined as R.id.image_view Then do the same as with any other bitmap:
ImageView imageView; imageView = (ImageView) findViewById(R.id.image_view); imageView.setImageBitmap(bitmap);
source share