答案 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>