简体   繁体   中英

Changing the color of navigation drawer group title text

I want to change the color of Title1 in the navigation drawer

.

It is based on the android:textColorSecondary color.

You can define something like:

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

with:

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

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM