Fullscreen Activity in Android?

后端 未结 30 2219
佛祖请我去吃肉
佛祖请我去吃肉 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:57

    thanks for answer @Cristian i was getting error

    android.util.AndroidRuntimeException: requestFeature() must be called before adding content

    i solved this using

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    
        requestWindowFeature(Window.FEATURE_NO_TITLE);
    
        super.onCreate(savedInstanceState);
    
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    
        setContentView(R.layout.activity_login);
    
        -----
        -----
    }
    

提交回复
热议问题