全屏activity

1、去掉标题栏
在Mainfest.xml中的application里添加android:theme="@style/Theme.AppCompat.NoActionBar">
2、在activity里的 super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

之间加上
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

你可能感兴趣的:(全屏activity)