I want to show the Bitmap image in ImageView from sd card which is stored already. After run my application is crash and getting Ou
This should work
BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 8; mBitmapSampled = BitmapFactory.decodeFile(mCurrentPhotoPath,options);