2

所以我正在开发一个应用程序,我正在拍照并尝试将其保存到应用程序的内部存储中。我遇到了文件提供程序的问题。我看过很多关于堆栈溢出的问题,但如果可能的话,我想得到更详细的解释。

我也跟着谷歌的例子,它给了我以下错误。https://developer.android.com/training/camera/photobasics

Failed to find configured root that contains /storage/emulated/0/Android/data/com.myapp.debug/files/Pictures/JPEG_20180427_095752_2090822261.jpg

这是我遵循 Google 示例时的代码。

<provider
        android:name=".application.blinkupregistration.postworkphotos.PostWorkPhotosFileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths"/>
    </provider>

在我的代码中。

Uri photoURI = FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", photoFile);

对于上述两个,我还尝试将 com.myapp.provider 硬编码到 authority 和 getUriForFile 方法中。还为 getUriForFile 方法做了 getpackageName()。但这些并没有太大变化。我认为主要问题是路径。

使用 Google 的示例尝试了以下路径,

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="post_work_photos" path="Android/data/${applicationId}/files/Pictures" />
</paths>


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

每当我将我的 paths.xml 更改为以下内容时,我都会让它工作。

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

但我不明白为什么它适用于该时期。我也不知道这是否正确,这是我主要关心的问题。

如果有人可以帮助我,那就太好了。谢谢。

4

2 回答 2

1

使用 Google 的示例尝试了以下路径,

他们的例子……有问题。

但我不明白为什么它适用于该时期。

因为您说您愿意支持外部存储根目录内的任何内容。

我也不知道这是否正确

您可以使用以下方法稍微缩小范围<external-files-path>

<external-files-path name="post_work_photos" path="." />

现在,您只提供来自 的文件getExternalFilesDir(),这是您的文件指向的位置。

于 2018-04-27T14:41:55.500 回答
0

如果您尝试将图片保存到应用程序的数据文件夹,这应该可以:

Intent imageIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
File image = new File(getApplicationContext().dataDir, "image.jpg");
Uri uriSavedImage = Uri.fromFile(image);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);

从 API 级别 4 开始支持context.dataDir 。

分配给包的持久数据的默认目录的完整路径。

否则,如果您在 API 级别 24 以上工作,则可以getFilesDir()在上下文中的任何位置调用。(活动,服务,...)

返回文件系统上存储使用 openFileOutput(String, int) 创建的文件的目录的绝对路径。

于 2018-04-27T17:48:23.853 回答