-
-
Notifications
You must be signed in to change notification settings - Fork 615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BottomNavigationView icon tinting broken in 3.2.0 #429
Comments
Theoretically the tint should be set correctly: I suppose it has something to do with this PR: Even though the tintList does not change: https://github.com/mikepenz/Android-Iconics/pull/417/files#diff-6dd39d3e1d57d5981614d1655a09362aR1228 |
Do you set a tintList to the bottom navigation view, or just a single color? |
I created a demo app that shows the issue. If you edit app/build.gradle and change the version to 3.1.0 it works fine. Edit: Sorry for not answering your question. I do not know what a tintList is, but my code is posted above. There is no additional styling in MainActivity.kt. |
Fixed in #430 |
@m-rm also You can set all icons automatically via Menu menu2 = ((BottomNavigationView) findViewById(R.id.navigation_auto)).getMenu();
IconicsMenuInflaterUtil.parseXmlAndSetIconicsDrawables(this, R.menu.menu_playground, menu2); (code from PlaygroundActivity.java) |
Thanks for the fix! I will try your suggestion when there is a new release. |
About this issue
Before:
After:
res/layout/activity_main.xml (only relevant code)
res/color/main_menu_items.xml
MainActivity.kt (only relevant code)
Details
The text was updated successfully, but these errors were encountered: