Full Screen without navigation & status bars

前端 未结 5 703
借酒劲吻你
借酒劲吻你 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:39

    This piece of code worked for me on 5.1

        View mDecorView = activity.getWindow().getDecorView();
        mDecorView.setSystemUiVisibility(View.GONE);
    

提交回复
热议问题