我的应用将文件保存在默认下载文件夹中。这由Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
确定。
现在我想打开默认的Android下载活动或应用程序,以便用户看到我的新文件下载文件夹。
答案 0 :(得分:1)
我猜您需要DownloadManager.ACTION_VIEW_DOWNLOADS
Intent viewDownloadsIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
startActivity(viewDownloadsIntent);
答案 1 :(得分:1)
我相信这是您正在寻找的代码:
Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
startActivity(intent);
答案 2 :(得分:1)
请尝试这种方法。
...persist of undefined...