I\'ve searched a bit but can\'t get a clear glimpse of it. How can I set a byte array of an Image into an ImageView? I tried with this but it didn\'t work.
ImageView
Get Bytes From Bitmap
ByteArrayOutputStream stream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, 70, stream); byte[] bytearray = stream.toByteArray(); return bytearray;