I am trying to load bitmap image from file in some devices my code is working perfectly but on the other device it gives OutOfMemory exception.
String filePath = mediaCursor.getString(mediaCursor.getColumnIndex(MediaStore.Images.Thumbnails.DATA));
fileName.add(filePath);
File file = new File(filePath);
Bitmap myBitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
bitmapArray.add(myBitmap);