I have the following problem, and I would like to design the implementation to make sure I will not encounter any issues.
At application startup, I need to do one (and only one) server request to keep the phone up to date. Then I enter into the main activity.
My biggest issue is the Back button with Android, which can potentially bring back my stack to the very first activity, ie, the one that does server synchronisation.
I have thought of the following implementation:
- I launched the Main activity straight away
- In the
onCreate()of the MainActivity, I launch the synchronisation process ... with some background logos, progress bar, etc etc... - Upon completion of the synchronisation, i call
finish()function on myActivity.
Will I then return the onCreate(), or straight to onResume() of the main Activity?
Does this implementation make sense?