I would like to download a pdf file(or any file type) from my android application I want to know waht is the best solution : AsynTask, Thread, Service
Thanks for your help
I would like to download a pdf file(or any file type) from my android application I want to know waht is the best solution : AsynTask, Thread, Service
Thanks for your help
You can do that using an AsyncTask not to block the UI thread while the download takes place, and you can do the download itself using an HttpURLConnection.
There are plenty examples here in SO.