リモートデータベースからBase64文字列を取得したビットマップencodedImage
があります(Base64で画像を表す文字列です):
profileImage = (ImageView)findViewById(R.id.profileImage);
byte[] imageAsBytes=null;
try {
imageAsBytes = Base64.decode(encodedImage.getBytes());
} catch (IOException e) {e.printStackTrace();}
profileImage.setImageBitmap(
BitmapFactory.decodeByteArray(imageAsBytes, 0, imageAsBytes.length)
);
profileImageは私のImageViewです
わかりましたImageView
が、私のレイアウトに表示する前に、この画像のサイズを変更する必要があります。120x120にサイズ変更する必要があります。
誰かにコードのサイズを変更するように教えてもらえますか?
私が見つけた例は、base64文字列取得ビットマップには適用できませんでした。