ビットマップ画像を表すBase64文字列があります。
AndroidアプリのImageViewで使用するために、その文字列を再度ビットマップ画像に変換する必要があります
どうやってするの?
これは、画像をbase64文字列に変換するために使用するコードです。
//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.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object
byte[] b = baos.toByteArray();
//String encodedImage = Base64.encode(b, Base64.DEFAULT);
encodedImage = Base64.encodeBytes(b);