I'm trying to take photo and than get file path by calling:
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(camera_intent, Static.TAKE_PICTURE);
and than:
case Static.TAKE_PICTURE:
if(resultCode == Activity.RESULT_OK){
if(data.getData() != null){
Uri selectedImage = data.getData();
String path = selectedImage.getPath();
if(path.contains("images/media")){
path = Static.getImageRealPathFromURI(getActivity().getBaseContext(),selectedImage);
}
}
}
break;
working fine on 4.1.2 Galaxy S3, but crashes every time on 4.2.2 Nexus 10 with:
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=65642, result=-1, data=null} to activity {com.******.***/com.******.***.Main}: java.lang.NullPointerException
If I try do the same for Video:
Intent video_intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(video_intent, Static.RECORD_VIDEO);
works fine. Really I don't have idea why.
This works for me:
photoFilePath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/" + Static.genereateFileName() + ".jpg";
File imageFile = new File(photoFilePath);
Uri imageFileUri = Uri.fromFile(imageFile);
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
camera_intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, imageFileUri);
startActivityForResult(camera_intent, Static.TAKE_PICTURE);