How do I change the color of the arrow of the actionbar dynamically? I don't want to use a theme like it was done here, because the color of my actionbar changes dynamically, too.
Is it possible?
You can change it programmatically easily by using homeAsUpIndicator() function that added in android API level 18 and upper.
ActionBar().setHomeAsUpIndicator(R.drawable.ic_yourindicator);
Copyright © 2021 Jogjafile Inc.
You can change it programmatically easily by using homeAsUpIndicator() function that added in android API level 18 and upper.