更改导航抽屉组标题文字的颜色

问题描述 投票:1回答:1

我想改变 Title1 在导航抽屉里

.

android material-components-android navigationview material-components android-navigationview
1个回答
0
投票

它的基础是 android:textColorSecondary 颜色。

你可以定义这样的东西。

<com.google.android.material.navigation.NavigationView
    android:theme="@style/ThemeOverlay.ItemGroup"
    ..>

与:

  <style name="ThemeOverlay.ItemGroup" parent="">
    <item name="android:textColorSecondary">@color/....</item>
  </style>

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.