Hide status bar in android 4.4+ or kitkat with Fullscreen

前端 未结 4 1924

I\'m using following code for hiding status bar with full screen purpose:

    void HideEverything(){
        if (Build.VERSION.SDK_INT < 16) {
                    


        
4条回答
  •  无人及你
    2020-12-12 02:07

    use following code onCreate

     @Override
     protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     requestWindowFeature(Window.FEATURE_NO_TITLE);   
     this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
     }
    

提交回复
热议问题