Google は Android 10 に Scoped Storage を導入しました。ドキュメントによると、MediaStore API を使用することで、アクセス許可を要求せずにパブリック ディレクトリに書き込むことができます。
Android 10 より前では、写真を撮ってピクチャに保存する必要がある場合、コードは次のようになります。
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
...
}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.example.android.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}
}
String currentPhotoPath;
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
currentPhotoPath = image.getAbsolutePath();
return image;
}
Pictures 内にファイルを直接作成し、ファイル uri を takePhotoIntent エクストラに入れます。インテントを開始して写真を撮る間、元のサイズの写真が Pictures ディレクトリに保存されます。
しかし、今は Android 10 をターゲットにしています。ドキュメントによると、写真を Pictures ディレクトリに保存するために WRITE_EXTERNAL_STORAGE 権限を要求する必要はありません。
許可がなければ、ファイルを作成してファイルの uri を取得し、それをインテント エクストラに入れることはできません。では、元のサイズの写真を保存するにはどうすればよいでしょうか。