Hi I am using ACTION_IMAGE_CAPTURE for capturing image using intent as follwo..
Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(
MediaStore.EXTRA_OUTPUT, (new File(Environment.getExternalStorageDirectory(),
String.valueOf(System.currentTimeMillis()) + ".jpg"))
);
startActivityForResult(cameraIntent, 0);
i need to store image in sdcard and retrieve path of that image in onActivityResult() method i don't know how to get image path of currently captured image. if any one knows please help.
Thanks