Avoiding black screen when resuming activity in AndEngine

Is there a way to avoid the black screen when resuming AndEngine?

+3
source share
1 answer

Have you redefined this method?

@Override
public void onGameCreated() {
    super.onGameCreated();
}

The call to "super.onGameCreated ()" is important.

+2
source

All Articles