1

我正在尝试使用 android camera 将图像保存在名为“appFolder”的文件夹中。我的目标 sdk 是 25。我的设备在 android nougat 上运行。但是,当我使用“dispatchTakePictureIntent()”单击图像时。图像没有保存在 appFolder 中。它保存在 DCIM/camera 文件夹中。为什么会发生这种情况以及如何将其保存在我的自定义文件夹中?

 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
                        Log.i("imageCaptutreError", ex.getMessage());

                    }
                    // Continue only if the File was successfully created
                    if (photoFile != null) {
                        Uri photoURI = FileProvider.getUriForFile(this,
                                "com.abc.def",
                                photoFile);
                        takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
                        startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
                    }
                }
            }

    private File createImageFile() throws IOException {
            File folder = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "appFolder");
            if (!folder.exists()) {
                folder.mkdir();
            }
            File tempFile = new File(folder, "temp_image.png");
                    /*new File(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "appFolder" + File.separator + "temp_image.png");*/

            mCurrentPhotoPath = tempFile.getAbsolutePath();
            return tempFile;
        }

Mainifest 中的提供者

   <provider
                android:name="android.support.v4.content.FileProvider"
                android:authorities="com.abc.def"
                android:exported="false"
                android:grantUriPermissions="true">
                <meta-data
                    android:name="android.support.FILE_PROVIDER_PATHS"
                    android:resource="@xml/file_paths"></meta-data>
            </provider>

@xml/文件路径

  <?xml version="1.0" encoding="utf-8"?>
    <paths xmlns:android="http://schemas.android.com/apk/res/android">
        <external-path name="my_images" path="appFolder/" />
    </paths>
4

1 回答 1

2

部分原因是您没有调用addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION). Intent就目前而言,其他应用程序没有对您的Uri.

但是,请记住,第三方相机应用程序存在错误。理想情况下,他们尊重EXTRA_OUTPUT. 然而,有些人不会:

  • ...因为他们EXTRA_OUTPUT通常忽略,或者
  • ...因为他们不知道如何处理这个content计划UriEXTRA_OUTPUT即使是谷歌自己的相机应用程序也有这个问题,直到 2016 年年中)

FWIW,此示例应用程序显示ACTION_IMAGE_CAPTUREFileProvider.

于 2017-02-20T15:35:37.560 回答