英文:
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));
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论