我已尝试过以下代码但仍无法正常使用。
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
答案 0 :(得分:0)
您可以尝试以下方法,
View view = getWindow().getDecorView();
// Hide the Status bar
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
view.setSystemUiVisibility(uiOptions);
// Hide ActionBar
ActionBar actionBar = getActionBar();
actionBar.hide();
或者只需在清单中添加样式,
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"