How to show menu item icon without tint color in BottomNavigationView
问题 I have created a BottomNavigationView with three items. One of it was user tab . For the guest tab, there is an image but the TintColor is applying and we can't see that. So how to remove tint colour for that particular item? I have tried if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { item.setIconTintList(null); } But no luck. And it applies to above api 26 My activity <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/bottomNavigationView" android