I use a Base64 String to save my image and want to convert it to a Bitmap in Android. The Problem is that the Image View is black in the lower area. I also tried it with another images, but I am facing the same problem there.
My Code:
byte[] decodedString = Base64.decode(rezept.getBildtxt(), Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
rezeptImage.setImageBitmap(decodedByte);
Thats how it looks like:
Any Ideas ?
