I have an activity (A) and activity (B). A is responsible for loading information, and B is the main activity. In B there are also loading operations which are realted to the UI (listeners, for example). I want to show activity A, and run activity B, but I want that B will be shown only when the loading (of B) was finished (I have a ProgressDialog in A).
How can I do this?
Thanks!
I have an activity (A) and activity (B). A is responsible for loading information,
Share
It sounds to me that the tasks of A are more suitable to a thread than an Activity.