Hey I need to display an image read from socket in my android application.The android application is basically a client it receives image from a java server.The java server writes a png file using ImageIO.write() function.I am new to android .Can somebody please help me
Share
read the image first into byte[] array and then construct bitmap from bytes using BitmapFactory. It could look something like this: