我在使用这个 Intent 和 Gallery 编辑器时遇到了问题
//fileURI is a content://
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setDataAndType(fileUri, "image/jpeg");
intent.putExtra("return-data", true);
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
使用 Photoshop 应用程序没问题,我可以保存和编辑,但不能使用 Android Gallery 将它保存在另一个目录中
谢谢