导航栏颜色在Kotlin中

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

Navigation bar color in Kotlin

问题

在Android 13中,我在导航栏颜色方面遇到了问题,当我将其设置为白色时,按钮仍然保持白色,因此它们不可见。有关此问题在Kotlin中的解决方案吗?可以更改导航栏中按钮的颜色吗?
颜色是在主题中设置的。

此外,我找到了一些答案,但要么过时,要么对我无效。

导航栏颜色在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.

导航栏颜色在Kotlin中

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

&lt;item name=&quot;android:navigationBarColor&quot;&gt;@color/navigation_bar_color&lt;/item&gt;

>colors.xml

&lt;color name=&quot;navigation_bar_color&quot;&gt;#000000&lt;/color&gt; 

huangapple
  • 本文由 发表于 2023年2月14日 21:24:39
  • 转载请务必保留本文链接:https://go.coder-hub.com/75448489.html
匿名

发表评论

匿名网友

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

确定