Android文件提供程序非法参数异常

时间:2016-08-16 14:55:49

标签: android android-xml android-image android-file android-fileprovider

我正在使用文件提供程序将照片保存到指定目的地。 我明白了:

java.lang.IllegalArgumentException:缺少android.support.FILE_PROVIDER_PATHS元数据 在尝试打开活动以从相机捕获图像时。

我的manifest.xml文件:

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

我的paths.xml文件:

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="content" path="Android/data/com.my_package_name/files/" />
</paths>

和Java代码:

File externalFilesDirectory = this.getExternalFilesDir(null);
File imageFile = File.createTempFile(
        imageFileName,
        ".jpg",
        externalFilesDirectory
);
Uri photoURI = FileProvider.getUriForFile(this, "com.example", imageFile);

最后一行给出了例外。 我在这里错过了什么?我已经关注了官方Android开发网站(https://developer.android.com/training/camera/photobasics.html

的教程

2 个答案:

答案 0 :(得分:18)

我找到了解决方案。问题是我的权威名称并没有以&#34; .fileprovider&#34;结尾。固定的。

答案 1 :(得分:0)

即使您具有正确设置appId的权限并且有FileProvider设置,您也应该理想地删除缓存,即删除.gradle和.idea文件夹,或者可能使缓存无效并重新启动,从而使您能够重新下载gradle再次依赖,然后对我有用:)希望这可以帮助某人