In Xamarin, how can I change the text colour of the text in the ActionBar
?
I have changed the background colour successfully, but not the text colour.
Here is my code:
ColorDrawable colorDrawable = new ColorDrawable(Color.White);
ActionBar.SetBackgroundDrawable(colorDrawable);
this.TitleColor = Color.Black;
I cannot see a correct method in the ActionBar
object, and specifying this.TitleColor
does not work correctly.