2

I have manage to show divider in navigation view using different group id as mentioned in this question. but i want to know how to change the color of the divider and deactive itemiconTint attributte. Thank in advance


EDIT: I ask question in comment and @Moinkhan has answer it. so i edit this question

Community
  • 1
  • 1
Fahmi Sidik
  • 189
  • 5
  • 13

1 Answers1

3

Yes you can deactive tint using

Programmatically

yourNavigationView.setItemIconTintList(null);

Using XML

<android.support.design.widget.NavigationView
    ...
    app:itemIconTint="@android:color/black" 
    ... />

I hope it helps you ..

Moinkhan
  • 12,732
  • 5
  • 48
  • 65