Let’s say you have a byte[] array of image data that you want to convert into an Image by showing up in an ImageView in your layout. We can achieve that with a few lines of code. We convert our byte data into a Bitmap using Bitmap.decodeByteArray() and then set that to a newly created […]
The post Quick Tip: Android Convert byte[] Data to ImageView appeared first on Code Theory.