英文:
Navigation bar color in Kotlin
问题
在Android 13中,我在导航栏颜色方面遇到了问题,当我将其设置为白色时,按钮仍然保持白色,因此它们不可见。有关此问题在Kotlin中的解决方案吗?可以更改导航栏中按钮的颜色吗?
颜色是在主题中设置的。
此外,我找到了一些答案,但要么过时,要么对我无效。
英文:
I have a problem with the navigation bar color in android 13, when I set it to white the button remain white so they are not visible. Any solution to that in Kotlin? Can the button color in the navbar?
The color is set in themes.
Also I found some answers, either it's outdated or it does not work for me.
答案1
得分: 1
将这部分添加到 themes.xml 文件中:
<item name="android:navigationBarColor">@color/navigation_bar_color</item>
在 colors.xml 文件中:
<color name="navigation_bar_color">#000000</color>
英文:
>add this to themes.xml
<item name="android:navigationBarColor">@color/navigation_bar_color</item>
>colors.xml
<color name="navigation_bar_color">#000000</color>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论