修改导航面板的颜色

huangapple go评论69阅读模式
英文:

Change the color of navigation panel

问题

是的,你可以从你的应用程序中更改默认的导航面板(不是来自你的应用程序的导航面板)的颜色。

英文:

I am creating an app, with DayNight theme. But, as default, the navigation panel (not from my app, I am talking about the default 3 button navigation panel) is always dark. Is it possible to change the color of that navigation drawer from my app?

答案1

得分: 1

是的,您可以以编程的方式执行此操作。

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    getWindow().setNavigationBarColor(ContextCompat.getColor(this, R.color.primary));
}
英文:

Yes you can do it programmatically.

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    getWindow().setNavigationBarColor(ContextCompat.getColor(this, R.color.primary));
}

huangapple
  • 本文由 发表于 2020年1月3日 18:48:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/59577194.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定