Search code examples
javaandroidtitletoolbartextcolor

Toolbar title first letter other color


I want my toolbar to have a colored title. That's not the problem. But how can I achieve that the first letter of the tile e.g. is black and the rest white? Is this possible?


Solution

  • One one could be to use Html.fromHtml to change the font's color of the two part of the String. E.g.

    String first = "<font color='#FF000000'>F</font>";
    String rest = "<font color='#FFFFFFFF'>irst</font>";
    setTitle(Html.fromHtml(first + rest));