Is there any event, method, flag or something else which tells me, that the next Activity has been started successfully and is shown on the screen.
MyCode to start an Activity class:
Intent intent = new Intent(this, nextActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Thanks in advance