My code calls an activity within a function, to receive user information (through some public variables): . ... instructions .
Intent i = new Intent(this, confirmar.class);
startActivity(i);
.
... instrucciones que procesan datos recibidos de activity confirmar
.
.
The problem is that the "confirm" activity is only activated at the end of the routine containing the call and therefore the instructions following the call are executed before the form requesting the information is displayed to the user . Any explanation to this?