Fullscreen Activity in Android?

后端 未结 30 2255
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 00:12

How do I make an activity full screen? I mean without the notification bar. Any ideas?

30条回答
  •  一生所求
    2020-11-22 00:45

    Be careful with

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    

    If you are using any method to set the action bar as the follow:

    getSupportActionBar().setHomeButtonEnabled(true);
    

    It will cause a null pointer exception.

提交回复
热议问题