How to change Android title bar text color programmatically?

user1124319 picture user1124319 · Dec 31, 2011 · Viewed 15.6k times · Source

In my app I populate title bar label from each activity but the text color in the activity and text color in title bar is same. How do I change the title bar text color to a different one?

Answer

Bevor picture Bevor · Dec 31, 2011

In your onCreate-method add the following:

setTitleColor(YOUR PREFERED COLOR);