我想为活动实现全屏模式。
所以,我先用过:
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.selector);
但这不起作用。所以我删除了该代码并使用了
<style name="Theme.CustomizedFullScreen" parent="android:Theme">
<item name="android:windowFullscreen">true</item>
<item name="android:windowNoTitle">true</item>
</style>
这段代码。但是,对于这两个代码,结果是:
(在实现代码之前)
(实现代码后)
那么,怎么了?