0

这可能是我在编写路径时的愚蠢,但这是我的代码,它无法找到配置的根目录。getUriForFile 是导致错误的原因。

@Override
public void onClick(View v) {
    if (v.getId() == R.id.main_activity_camera_access_button) {
        Log.d(TAG, "clicked");
        Toast.makeText(getContext(), R.string.first_activity_toast_opening_camera, Toast.LENGTH_SHORT).show();
        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

        if(intent.resolveActivity(getActivity().getPackageManager()) != null) {
            mPhotoFile = null;
            try {
                mPhotoFile = createImageFile();
            } catch (IOException ex) {
                Log.d(TAG, "exception while creating photo file");
            }
            if(mPhotoFile != null){
                mfileUri = FileProvider.getUriForFile(getContext(), "edu.lclark.imagineyourwall.fileprovider", mPhotoFile);
                intent.putExtra(MediaStore.EXTRA_OUTPUT, mfileUri); // set the image file name

                // start the image capture Intent
                startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
            }
        }
            //mfileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE); // create a file to save the image
    }
}

我在 res 下有一个 xml 目录,其中有我的 my_paths.xml。这是 my_paths.xml 的代码。

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="my_images"
    path="Android/data/edu.lclark.imagineyourwall.name/files/Pictures" />
</paths>

另外,我的清单看起来像这样,至少是提供者部分。

 <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="edu.lclark.imagineyourwall.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/my_paths"></meta-data>
    </provider>
4

1 回答 1

0

我认为您正在为此关注 Android 开发人员文档吗?如果您的目标不是 Android N (Nougat),删除该getUriForFile行并修改intent.putExtra(MediaStore.EXTRA_OUTPUT, mfileUri)intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mPhotoFile)).

根据Android 开发者文档

对于针对 Android N 及更高版本的最新应用程序,跨包边界传递 file:// URI 会导致 FileUriExposedException。因此,我们现在提出一种使用 FileProvider 存储图像的更通用的方法。

于 2016-08-25T03:45:23.740 回答