我正在尝试使用以下代码行从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);
但是结果还是一样。
以前有人遇到过这个问题吗?