[android-developers] Re: Navigation Drawer Icon Theme/Color?

2014-05-28 Thread Kevin Kovach
Thanks. This works and I believe is much closer to what I was hoping for. I guess my next/final question is, isn't there a way that you can use styles to tint all of the icons in the action bar? We have an app that we want to allow customers style, and would like to allow them to change the

[android-developers] Re: Navigation Drawer Icon Theme/Color?

2014-05-23 Thread b0b
If you don't want to copy / modify classes: private void setActionBarUpTint(int color) { int upId = getResources().getIdentifier(android:id/up, null, null); if(upId == 0) return ; View view = getWindow().getDecorView().findViewById(upId); if(!(view instanceof