I Used the below code for this but it always says file not found. but the same is working in case of gallery.
File cameraFile = new File(
Environment.getExternalStorageDirectory(),
"photo.jgp");
if (cameraFile.getPath() != null) {
Bitmap bitmap = BitmapDecoder.from(context, cameraFile.getPath()).decode();
mImageView.setImageBitmap(bitmap);
}