Android 编写一个可以在默认文件应用程序中选取的 FileProvider
我正在编写一个包含文件资源管理器的应用程序。我希望我编写的这个文件浏览器能够为其他应用程序提供文件,类似于某些 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:
What can I do to have my app show up on this list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想处理 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.