How to change system navigation bar color

后端 未结 8 1700
故里飘歌
故里飘歌 2020-12-08 02:17

In guidelines of Android 5.0, the navigation bar seems customizable: http://www.google.com/design/spec/layout/structure.html#structure-system-bars

H

8条回答
  •  天命终不由人
    2020-12-08 02:28

     getWindow().setNavigationBarColor(ContextCompat.getColor(MainActivity.this,R.color.colorPrimary)); //setting bar color   
     getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); //additional setting items to be black if using white ui  
    

提交回复
热议问题