How do I change Item title font color for an Item that contains a menu in Navigation Drawer

前端 未结 2 1290
难免孤独
难免孤独 2020-12-21 14:26

I\'ve been searching for a way to change a specific font color in my nav drawer. I can change the font colors for other item titles but not ones containing a menu.

相关标签:
2条回答
  • 2020-12-21 14:58

    Using app:itemTextColor, the menu item title color can be set. You can refer following xml code.

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header"
        app:itemIconTint="@color/your_menuitem_icon_color"
        app:itemTextColor="@color/your_menuitem_title_color"
        app:menu="@menu/menu" />
    
    0 讨论(0)
  • 2020-12-21 15:11

    To change the menu title instead of the individual item titles I just used html tags in the strings resource for color The title and referenced the strings xml as the title. This can be done for doing individual colors for each item also.

    <string name="testTitle"><font color="#303F9F">The title</font></string>
    
    <group
    android:id="something"
    android:checkableBehavior="single>
    <item
        android:title="@string/testTitle">   <--This is what I want to change-->
        <menu>
            <item android:title="stuff"/> <--This i can change-->
            <item android:title="stuff"/>
        </menu>
    </item>
    

    I also noticed that this doesn't work if you have secondary text color in set in your styles.

    0 讨论(0)
提交回复
热议问题