I am working on app where parent app downloads a child app apk file and install it. But as per the requirements I need to customize the installation screen to a new screen . I think everything is possible in Android ..May be this too.Someone who tried this or know he could do this Please help me? I dont know where to start with ?Thanks
Asked
Active
Viewed 75 times
1 Answers
0
Use an AsyncTask to download from your url, here is an example that even has a progress bar: Download a file with Android, and showing the progress in a ProgressDialog
While it's downloading, the UI can do anything you want.
When the download is done, your AsyncTask's onPostExecute() method will be called - perform the next step afterwards from there.