DownloadManager.ACTION_VIEW_DOWNLOADS打开文档目录,而不是下载文件夹

时间:2018-08-16 11:28:07

标签: android android-intent

我正在尝试使用以下代码行从Pixel C平板电脑(版本8.1.0)上的应用打开下载目录:

 startActivity(new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS));

但是打开了文档目录。

我尝试使用StorageManager提取确切的URI:

 StorageManager sm = getActivity().getSystemService(StorageManager.class);
 StorageVolume volume = sm.getPrimaryStorageVolume();
 Intent i = volume.createAccessIntent(Environment.DIRECTORY_DOWNLOADS);

 Intent i = new Intent(Intent.ACTION_GET_CONTENT);
 i.setData(uri);
 i.setType("vnd.android.document/directory");
 i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
 startActivity(i);

但是结果还是一样。

以前有人遇到过这个问题吗?

0 个答案:

没有答案