I have an Android project where I have an Activity that downloads a .APK file. After the download is complete I need to fire another Activity that installs it.
How can I make the Install Activity fire only after the Download Activity is complete?
|
I have an Android project where I have an Activity that downloads a .APK file. After the download is complete I need to fire another Activity that installs it. How can I make the Install Activity fire only after the Download Activity is complete? |
|||
|
|
|
Use AsyncTask to download, and fire the new activity in |
|||
|
|
|
While MByD is probably in correct in that you probably want to use AsyncTask for downloading, to answer your question directly, you would use a parent activity and call your downloading activity with startActivityForResult and then set onActivityResult to start the next activity when returning with some value (eg. |
|||||
|