Android: How To Create A Direct Download Link In Android
Can anyone give me an idea on how to create a textview which has a link and when the user click it, the file from that link will be automatically downloaded by the device EDIT: her
Solution 1:
Thats quite easy http://developer.android.com/reference/android/app/DownloadManager.html
Example: http://androidtrainningcenter.blogspot.co.at/2013/05/android-download-manager-example.html
And start this method after clicking the textview (Catch with Handler or listener)
/**
* Start Download
*/publicvoidstartDownload() {
DownloadManager mManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
Request mRqRequest = new Request(
Uri.parse("http://androidtrainningcenter.blogspot.in/2012/11/android-webview-loading-custom-html-and.html"));
mRqRequest.setDescription("This is Test File");
// mRqRequest.setDestinationUri(Uri.parse("give your local path"));long idDownLoad=mManager.enqueue(mRqRequest);
}
But be sure you are min. on API 9
Solution 2:
Please use the below code onclick of TextView:
<YourTextView>.setOnClickListener(newView.OnClickListener() {
@OverridepublicvoidonClick(View v) {
// starting new Async TasknewDownloadFileFromURL().execute(<YourURLString>);
}
});
DownloadFromURL.java
publicclassDownloadFileFromURLextendsAsyncTask<String, String, String> {
/**
* Before starting background thread
* Show Progress Bar Dialog
* */@OverrideprotectedvoidonPreExecute() {
super.onPreExecute();
showDialog(progress_bar_type);
}
/**
* Downloading file in background thread
* */@OverrideprotectedStringdoInBackground(String... f_url) {
int count;
try {
URL url = newURL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// getting file length
int lenghtOfFile = conection.getContentLength();
// input stream to read file - with 8k bufferInputStream input = newBufferedInputStream(url.openStream(), 8192);
// Output stream to write fileOutputStream output = newFileOutputStream("/sdcard/downloadedfile.jpg");
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....// After this onProgressUpdate will be calledpublishProgress(""+(int)((total*100)/lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
returnnull;
}
/**
* Updating progress bar
* */protectedvoidonProgressUpdate(String... progress) {
// setting progress percentage
pDialog.setProgress(Integer.parseInt(progress[0]));
}
/**
* After completing background task
* Dismiss the progress dialog
* **/@OverrideprotectedvoidonPostExecute(String file_url) {
// dismiss the dialog after the file was downloadeddismissDialog(progress_bar_type);
// Displaying downloaded image into image view// Reading image path from sdcardString imagePath = Environment.getExternalStorageDirectory().toString() + "/downloadedfile.jpg";
// setting downloaded into image view
my_image.setImageDrawable(Drawable.createFromPath(imagePath));
}
}
Post a Comment for "Android: How To Create A Direct Download Link In Android"