Full Screen without navigation & status bars

前端 未结 5 692
借酒劲吻你
借酒劲吻你 2021-02-04 15:12

I want to create a activity with full screen. Nothing on above like Notification Bar and nothing below like Home-Button etc.I am able to get this, but also wanted to remove belo

5条回答
  •  我在风中等你
    2021-02-04 15:22

    Do it programmatically in your activity class:

    public class ActivityMain extends AppCompatActivity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
            // this will remove title
            requestWindowFeature(Window.FEATURE_NO_TITLE);
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
    
            setContentView(R.layout.main);
        }
    }
    

提交回复
热议问题