How to convert a Base64 string into a Bitmap image to show it in a ImageView?
问题 I have a Base64 String that represents a BitMap image. I need to transform that String into a BitMap image again to use it on a ImageView in my Android app How to do it? This is the code that I use to transform the image into the base64 String: //proceso de transformar la imagen BitMap en un String: //android:src=\"c:\\logo.png\" Resources r = this.getResources(); Bitmap bm = BitmapFactory.decodeResource(r, R.drawable.logo); ByteArrayOutputStream baos = new ByteArrayOutputStream(); bm