Download Video Files Pictures etc
File Downloader
For Developer use
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.mediaplay.downloader", "com.mediaplay.downloader.AddDownloadActivity"));
try {
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("title", name);
intent.putExtra("url", link);
startActivity(intent);
} catch (ActivityNotFoundException e) {
}