方式一:动态编码方式
//去掉窗口标题
requestWindowFeature(Window.FEATURE_NO_TITLE);
//隐藏顶部的状态栏
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView();
方式二
android:theme="@android:style/Theme.Black.NoTitleBar"
android:theme="@android:style/Theme.Black.NoTitleBar.FULLscreen"
方式三