Android中目录的MIME类型

前端之家收集整理的这篇文章主要介绍了Android中目录的MIME类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道我是否可以启动一个Intent来查看带有文件浏览器的目录(如果设备上安装了一个),那么我可以打开这样的文件夹:
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("file:///sdcard/MyFolder");
intent.setDataAndType(uri,"MIME TYPE FOR FOLDERS");
startActivity(intent);
@H_404_4@

解决方法

AndExplorer有供应商mime类型使用AndExplorer作为文件选择器:

> vnd.android.cursor.dir / lysesoft.andexplorer.director
> vnd.android.cursor.dir / lysesoft.andexplorer.file

有关更多信息,请参见AndExplorer’s developper documentation.我认为其他文件浏览器类似的功能,但我还没有找到他们的文档.

@H_404_4@ @H_404_4@ 原文链接:https://www.f2er.com/android/318297.html

猜你在找的Android相关文章