Set Full Screen out onCreate
问题 I can only set my Activity to Full Screen in onCreate method (before setContentView)? Is there any way I can set to full screen outside of onCreate? Thanks 回答1: Is possible! Adding this code. // go full screen WindowManager.LayoutParams attrs = mActivity.getWindow().getAttributes(); attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN; mActivity.getWindow().setAttributes(attrs); // go non-full screen WindowManager.LayoutParams attrs = mActivity.getWindow().getAttributes(); attrs.flags &=