I need to make a custom download manager as I am using android 2.2 version and google has given download manager api from android 2.3 version.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to form http requests with your download file url. Also go through http request and response header where you have options to request from how many bites to end you want to download. Also in response you have how many bytes downloaded so far like that. You also have to implement some broadcast receiver like wifi changed and device shutdown and reboot. In those places you have to write some info like how many bytes downloaded so far, what is url you are downloading from and how many are still pending and resume them after reboot. If you don’t understand, give your mail I will send some code. Above one is the way I did in past, I too am a beginner like you.