更改Android导航栏按钮的颜色

时间:2017-05-16 14:03:07

标签: android navigationbar

有没有办法更改导航栏 BUTTONS 的颜色,而不是导航栏本身从白色变为灰色:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:-1)

你可以在API中执行此操作> 21如下:

if (Build.VERSION.SDK_INT >= 21) {
    getWindow().setNavigationBarColor(ContextCompat.getColor(this, R.color.some_color));
}

查看更多信息here

或者只需在 values-v21 / style.xml

中添加以下代码即可
<item name="android:navigationBarColor">@color/theme_color</item>