我希望我的应用程序通过单击按钮打开“文件”>“下载”。以下代码不起作用。它正在做的就是重新启动我的应用程序。我在做什么错了?
Intent launchDownloadsFolder = new Intent(Intent.ACTION_VIEW);
Uri getDLFolder = Uri.parse("file://" +
DownloadPromptPopUp.downloadDirectory);
launchDownloadsFolder.setDataAndType(getDLFolder, "videos/*");
launchDownloadsFolder.getData();
startActivity(launchDownloadsFolder);
答案 0 :(得分:0)
是的,有可能。您可以尝试下面的代码来完成工作。
startActivity(new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS));
希望这会对您有所帮助。