In my main activity inside Activity_Create I start three other activities. There is desired order to start them, first should be "Intro" activity, then "Eula" activity, and finally some activity which is "base" form/activity for app.
If I put them in code by that sequence, they appear in revers order: base-eula-intro (almost like they are stacked on top of each other)...
Probably b4a start first one (intro) and but it thus not wait for this one to finish and return to same code position, but starts second and third? Last one is visible to user until is closed, then secodn continues, etc ..
Is that correct?
I solved this be reverse order start sequence, but I'm wondering if this is right way to do it ?