カメラ用の Android 開発者のリソースに問題があります。これが私のコードです。
// create Intent to take a picture and return control to the calling application
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);
// create a file to save the image
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name
// start the image capture Intent
startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
問題は、変数に解決できないという「MEDIA_TYPE_IMAGE」です。メディアストア、カメラ、および URI をプロジェクトにインポートしました。前もって感謝します!