我從內部存儲器中取出圖像,並將其粘貼在合併函數中的偉大圖像上。在66圖像之後,應用程序崩潰並且錯誤內存不足。你有什麼想法,爲什麼應用程序崩潰和如何解決it.here應用程序崩潰後的圖像沒有66 come`內存不足錯誤未解決
public void mergeImageClicked(View v) {
int noOfImage = listFile.length;
Bitmap[] bitmap = new Bitmap[noOfImage];
Bitmap[] resizedBitmap = new Bitmap[noOfImage];
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
for (int j = 0; j < listFile.length; j++) {
bitmap[j] = BitmapFactory.decodeFile(listFile[j].getAbsolutePath(), options);
resizedBitmap[j] = ThumbnailUtils.extractThumbnail(bitmap[j], 30, 30);
}
`
66高分辨率位圖真的很重,它並不讓我感到驚訝......我不知道你如何使用你的位圖[]位圖數組,但也許你可以保留調整大小的... – n00dl3