組み込みのカメラアプリを使用して写真を撮って保存しようとしています。ちょうどap[icture. 写真を保存するために copde を追加すると、コードを終了するとカメラ アプリがクラッシュします。
takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
try {
File f = new File(getFilesDir(), "test");
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
} catch (Exception e) {
gi++;
}
startActivityForResult(takePictureIntent, 1);