I have image content as byte[] from database.
byte[]
private byte[] image;
How can I show that byte array as a real graphic image in
Just bind one String variable to image on UI.
For example you are loading the image byte[] from database then first encode it in base 64 String.
String imageString= new String(Base64.encodeBase64(byte array fetched from database));