Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Amit Feldman
12,795 PointsActionBar Title Text Color problem
Hey guys, I changed the ActionBar theme using a theme generator and the color of the text in the Title is black, how do I change the color to white?
Thanks!
7 Answers

Jose Ortiz
Courses Plus Student 6,161 Pointscss
id or class{
color:#fff;
}```

Amit Feldman
12,795 PointsAnd how do you do that?

Jose Ortiz
Courses Plus Student 6,161 Pointsinside.your.css file you would.write the code above

Amit Feldman
12,795 PointsYou realize I'm talking about an android App, not a web page, right?

Jose Ortiz
Courses Plus Student 6,161 Pointsoh sorry but I think might have a solution.for that try
.setColorFilter(Color.WHITE, Mode.SRC_IN);

Amit Feldman
12,795 PointsI found a different solution. Created a TypeFace class with some things I found over the internet and in there I added "setColor(Color.WHITE);" and it worked :)