Android Completely transparent Status Bar?

前端 未结 28 3127
旧时难觅i
旧时难觅i 2020-11-22 14:10

I\'ve searched the documentation but only found this: Link. Which is used to make the bar translucent? What I\'m trying to do is to make t

28条回答
  •  甜味超标
    2020-11-22 14:18

    in my case as I've a bottom tool bar I had a problem when testing the previous solutions, the android system buttons are covered with my bottom menu my solution is to add within the activity:

    protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

        // force full screen mode
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
    
    
        setContentView(R.layout.main_activity_container);
    

提交回复
热议问题