在我的应用程序中,我必须管理Android相机拍摄的大量图像。
问题在于,当我有很多照片时,手机内存不足,工作速度很慢。 我希望仍然能够管理相同数量的图像,但没有内存问题
有关我应该采取哪些措施来实现这一目标?
答案 0 :(得分:0)
您应该解码缩放的图像
您可以通过将JPEG扩展为已经缩放以匹配目标视图大小的内存数组来减少动态堆的使用量。
以下示例方法演示了此技术:
private void setPic() {
// Get the dimensions of the View
int targetW = mImageView.getWidth();
int targetH = mImageView.getHeight();
// Get the dimensions of the bitmap
BitmapFactory.Options bmOptions = new BitmapFactory.Options();
bmOptions.inJustDecodeBounds = true;
BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
int photoW = bmOptions.outWidth;
int photoH = bmOptions.outHeight;
// Determine how much to scale down the image
int scaleFactor = Math.min(photoW/targetW, photoH/targetH);
// Decode the image file into a Bitmap sized to fill the View
bmOptions.inJustDecodeBounds = false;
bmOptions.inSampleSize = scaleFactor;
bmOptions.inPurgeable = true;
Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions);
mImageView.setImageBitmap(bitmap);
}
了解更多here。