gpt4 book ai didi

android-studio - 如何更改导航栏图标的颜色? (安卓工作室)

转载 作者:行者123 更新时间:2023-12-04 01:56:30 25 4
gpt4 key购买 nike

为了避免混淆 navigationbar 实际上是什么,这里有一个 picture

如您所见,我使用以下方法添加了一种新颜色而不是标准黑色:

<item name="android:navigationBarColor">@color/colorBackground</item>

但是图标现在几乎不可见,所以我想把它们改成黑色,或者至少更暗。我已经搜索过 SO 和 webb,但空手而归。有任何想法吗?

最佳答案

您不能自己更改按钮的颜色。
但是,您可以尝试将导航栏设置为 true。应该注意的是,这仅从 API 级别 27 可用。

windowLightNavigationBar added in API level 27

int windowLightNavigationBar

If set, the navigation bar will be drawn such that it is compatible with a light navigation bar background.

For this to take effect, the window must be drawing the system bar backgrounds with windowDrawsSystemBarBackgrounds and the navigation bar must not have been requested to be translucent with windowTranslucentNavigation. Corresponds to setting SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR on the decor view.

May be a boolean value, such as "true" or "false".



source

关于android-studio - 如何更改导航栏图标的颜色? (安卓工作室),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50210070/

25 4 0