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

时间:2020-05-14 12:10:18

标签: android material-components-android navigationview material-components android-navigationview

我想更改导航抽屉中Title1的颜色

.

1 个答案:

答案 0 :(得分: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