katwal-dipak
katwal-dipak

Reputation: 3691

Navigation Drawer Menu Not Showing Some Icons

enter image description here

That round icons was supposed to look like this enter image description here

 <item
        android:checked="false"
        android:icon="@drawable/nav_settings"
        android:title="Contact Us" />

    <item

Even default icon ic_launcher is not shown. I am using Design Support Library for Navigation Drawer

Upvotes: 4

Views: 2475

Answers (1)

Raghunandan
Raghunandan

Reputation: 133560

From the discussions in the comment section , it looks like you don't want the icons to be tinted. So just use

navigationView.setItemIconTintList(null);

Note : This is not in line with the material design guidelines. I would not recommend this

Upvotes: 17

Related Questions