BitmapFactory.Options opts = new BitmapFactory.Options();
opt.inSampleSize = 2;
//this will decrease bitmap size,
// but also affect quality of the image,
//so just play with this value to spot the good one;
Bitmap b = BitmapFactory.decodeFile(fileName, opts);