2020 Apr. 26.
2020 Mar. 21.
/* * 画像ファイルを削除すると共にデータベースからも削除する * imageFile : FILE型の画像ファイル * imageFilePath : imageFileのフルパス */ private void deletePhoto() { if ( imageFile.delete()) { // imageFilePathをアルバムから削除する this.getContentResolver().delete( MediaStore.Files.getContentUri("external"), MediaStore.Files.FileColumns.DATA + "=?", new String[]{ imageFilePath} ); return; } else{ // failed to delete. return; } }