Android Get Image Uri from Camera
- by josnidhin
Hi
I have an application that calls the android phone's default camera to take photo the following is my code.
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, TAKE_PICTURE);
and in the onActivityResult method I am doing the following
if ((requestCode ==…