在Android

时间:2016-08-25 02:56:39

标签: android path android-fileprovider

这可能是我编写路径时的愚蠢,但这是我的代码,并且找不到配置的root。 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>

1 个答案:

答案 0 :(得分:0)

我认为你正在关注Android Developer文档吗?如果您未定位Android N(Nougat),则可以安全删除getUriForFile行并将intent.putExtra(MediaStore.EXTRA_OUTPUT, mfileUri)修改为intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mPhotoFile))

根据Android developer documentation;

  

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