如何启动默认的Android下载活动或应用程序?

时间:2016-07-06 14:30:14

标签: android

我的应用将文件保存在默认下载文件夹中。这由Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)确定。

现在我想打开默认的Android下载活动或应用程序,以便用户看到我的新文件下载文件夹。

3 个答案:

答案 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...