0
私はListViewで画像を取得しようとしています。このようにして画像をStringで受信しますが、低解像度の画像を使用しても問題はありません私は15095824バイトの割り当てここでアンドロイドImageViewで15095824バイトの割り当てでメモリが不足している
にメモリ不足を取得し、高解像度の画像を取得する必要がある私のアンドロイドコード:
if(image[position]!=null) {
byte[] imageAsBytes = Base64.decode(image[position].getBytes(), Base64.DEFAULT);
assert hirerPicLocal != null;
hirerPicLocal.setImageBitmap(BitmapFactory.decodeByteArray(imageAsBytes,0, imageAsBytes.length));
}