by this way
Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, REQUEST_CODE);
i get a bitmap form intent in the onActivityResult, and not the path !, by this way
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, mImageUri);
startActivityForResult(intent, REQUEST_CODE);
i can get the path from intent, and not the bitmap !!, how can i get the bitmap(thumbnail) and the path from android camera ?