How can I enable a black opaque tool bar on android to avoid drowing game scene under the tool bar?
Everything I have already done are:
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
in Cocos2dxActivity::init(), but now I have transparent constant tool bar with game scene under it. But I want my game scene’s top does start from tool bar’s bottom.
Thank You in advance.