我正在使用此代码从Uri下载歌曲。
String url = "url of song that will download";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
Download.this.startActivity(intent);
Download.this.finish();
Toast.makeText(Download.this,
"The file you are downloading will be saved in your SD Card downloads folder.",
Toast.LENGTH_LONG).show();
默认情况下,我的歌曲保存在SDCards / Downloads文件夹中。我想将我的歌曲保存在SDCards / Device文件夹中。
请建议我,如何以编程方式更改浏览器的下载路径。
先谢谢。
答案 0 :(得分:0)
据我所知,您无法通过代码更改浏览器设置。遗憾。