How to change system navigation bar color

后端 未结 8 1727
故里飘歌
故里飘歌 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:48

    You can also set light system navigation bar in API 26 programmatically:

    View.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR);
    

    Where View coluld be findViewById(android.R.id.content).

    However remember that:

    For this to take effect, the window must request FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS but not FLAG_TRANSLUCENT_NAVIGATION.

    See documentation.

提交回复
热议问题