I try to change from Activity to Activity from andengine and last loaded very slow.How can i insert between image with text “Tap to start” when andengine activity loading ends.I use this function to change.
startActivity(new Intent(ChangeLevelActivity.this, GameActivity.class));
overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
You should not switch activities – switch scenes.
Create different scenes for different “screens” in your game and switch between them – switching between scenes is fast and easy, much faster than activities.