I use this code for download link from url and save to sd card ( whith smartphone )
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://yourname.com/file.mp3"));
startActivity(intent);
But after start this intent , browser open and after download link
How download from url without open browser ?