I\'m currently implementing theme support for my application and a part of it is changing the action bar app icon. I want to use a dark icon when Holo Light is selected. Eve
Try this
setSupportActionBar(toolbar); if (getSupportActionBar() != null) getSupportActionBar().setIcon(R.drawable.your_icon);