拍照後旋轉手機時我得到ActivityResult錯誤:Android的錯誤使用意向ACTION_IMAGE_CAPTURE
"Attempt to invoke virtual method 'java.lang.String android.net.Uri.getPath()' on a null object reference",
拍照時再旋轉手機或模擬器,然後確認「保存」的畫面。
這是我如何調用攝像頭:
File file = getOutputMediaFile(processid);
picUri = Uri.fromFile(file);
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(MediaStore.EXTRA_OUTPUT, picUri);
startActivityForResult(i, 1);
發佈onActivityResult()的代碼和包含錯誤的堆棧跟蹤。 –