Fullscreen Activity in Android?

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

    Create an empty activity and add two lines in onCreate.

    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
            // full screen activity
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
            getSupportActionBar().hide();
    
            setContentView(R.layout.activity_main);
        }
        ...
    }
    

提交回复
热议问题