美文网首页
全屏activity

全屏activity

作者: phi3 | 来源:发表于2017-11-14 20:59 被阅读0次

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

      本文链接:https://www.haomeiwen.com/subject/muqqvxtx.html