首页 > 解决方案 > 如何从 Android 文件选择器抽屉中删除项目?

问题描述

有没有办法从 android 文件选择器中删除“下载”、“图片”或“视频”部分?我知道例如可以使用以下方法删除 Google Drive:

intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);

但是你怎么能删除其他人呢?我正在三星设备上尝试它,阅读了一些帖子,我发现您可能必须为意图指定与供应商相关的配置。我的看起来像这样:

Intent intent = new Intent(Intent.OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE)
intent.setType("*/*");

在此处输入图像描述

标签: androidandroid-intentandroid-fileproviderandroid-storage

解决方案


您是否尝试过指定 MIME 类型?

尝试改变这个

intent.setType("*/*");

对此

intent.setType("image/*");

在这种情况下,您将看不到视频和音频。根据您的需要更改 MIME 类型。


推荐阅读