I start a cam intent and want to retrieve the picture path of the new taken picture in my app. How can I achieve this? I need the path of this picture so that my background service can work with it.
else if (requestCode == TAKE_PICTURE && resultCode == ActionActivity.RESULT_OK){
Log.i(ACTION_ACTIVITY_TAG, "picture intent gives result ok");
Bundle b = new Bundle();
b.putSerializable("picUri", ??????);
Intent i = new Intent();
i.putExtras(b);
i.setClass(this,CommentActivity.class);
}