Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change color of the actionbar's arrow dynamically [duplicate]

Tags:

android

themes

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?

like image 493
chocolate cake Avatar asked Nov 10 '22 11:11

chocolate cake


1 Answers

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);
like image 59
Maveňツ Avatar answered Nov 14 '22 22:11

Maveňツ