How to change system navigation bar color

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

    Use this in your Activity.

     if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            getWindow().setNavigationBarColor(getResources().getColor(R.color.green));
        }
    

提交回复
热议问题