Android 编写一个可以在默认文件应用程序中选取的 FileProvider

发布于 2025-01-12 23:00:50 字数 1460 浏览 0 评论 0原文

我正在编写一个包含文件资源管理器的应用程序。我希望我编写的这个文件浏览器能够为其他应用程序提供文件,类似于某些 Android 文件浏览器的工作方式。我已经在清单中编写了提供程序部分:

<provider
    android:name="androidx.core.content.FileProvider"
    android:authorities="com.OxGames.OxShell.Explorer"
    android:exported="false"
    android:grantUriPermissions="true">

    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths"/>
</provider>

我还编写了路径 xml(目前它包括所有内容):

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

    <files-path
        name="my_images"
        path="images/" />

    <files-path
        name="my_docs"
        path="docs/" />

    <external-files-path
        name="external_files_dir"
        path="/" />

    <cache-path
        name="cache_dir"
        path="/" />

    <external-cache-path
        name="external_cache_dir"
        path="/" />

    <external-media-path
        name="external_media_dir"
        path="/" />

    <external-media-path
        name="external_media_dir"
        path="/" />

</paths>

它构建时没有错误,但是当另一个应用程序向 Android 系统请求文件时,该应用程序不会显示/文件夹。这是我使用其他应用程序请求文件时看到的列表:

在此处输入图像描述

我该怎么做才能让我的应用程序显示在此列表中?

I'm writing an app that contains a file explorer. I'd like this file explorer that I wrote be able to provide files for other apps, similar to how some android file explorers work. I've written the provider part in the manifest:

<provider
    android:name="androidx.core.content.FileProvider"
    android:authorities="com.OxGames.OxShell.Explorer"
    android:exported="false"
    android:grantUriPermissions="true">

    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths"/>
</provider>

I've also written the paths xml (for now it includes everything):

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

    <files-path
        name="my_images"
        path="images/" />

    <files-path
        name="my_docs"
        path="docs/" />

    <external-files-path
        name="external_files_dir"
        path="/" />

    <cache-path
        name="cache_dir"
        path="/" />

    <external-cache-path
        name="external_cache_dir"
        path="/" />

    <external-media-path
        name="external_media_dir"
        path="/" />

    <external-media-path
        name="external_media_dir"
        path="/" />

</paths>

It builds without error, but the app does not show up when another app requests the android system for a file/folder. This is the list I see when I request a file using another app:

enter image description here

What can I do to have my app show up on this list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2025-01-19 23:00:50

如果您想处理 ACTION_OPEN_DOCUMENT_TREE,请实现/扩展 DocumentProvider。

如果您想处理 ACTION_GET_CONTENT,请为 ACTION_GET_CONTENT 实现意图过滤器。

Implement/extend a DocumentProvider if you wanna handle ACTION_OPEN_DOCUMENT_TREE.

Implement an intent-filter for ACTION_GET_CONTENT if you wanna handle ACTION_GET_CONTENT.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文