If we set a color to something else (ex: RED), it is red on both.
Then, if we set it to BLACK again, it's black on both.
So I suspect that the base background color isn't black, but full transparent.
I suggest that App.ClearColor is set to Black instead of transparent for new projects,
or we could modify the ZgeActivity.java so that the Activity color isn't white, but black by adding:
Code: Select all
import android.graphics.Color;
...
setContentView( zge );
getWindow().getDecorView().setBackgroundColor(Color.BLACK);
NB:
This doesn't solve the transparency problem on Android.