Android Question CsBuilder / Activity.Title

MarcoRome

Expert
Licensed User
Longtime User
Hi @Erel, all
i have this code:

B4X:
    Dim cs As CSBuilder
    cs.Initialize.Append("Text with FontAwesome: ").Typeface(Typeface.FONTAWESOME).Append(Chr(0xF209)).PopAll
'    cs.Initialize.Append("Text with MaterialIcons: ").Typeface(Typeface.MATERIALICONS).VerticalAlign(5dip).Append(Chr(0xE84E)).PopAll

    Activity.Title = cs
  
'Color   
'    Dim cs As CSBuilder
'    Activity.Title = cs.Initialize.Color(Colors.Red).Append("Hello!").PopAll

But i have this effect with FontAwesome
upload_2017-3-21_7-16-38.png


and this effect with MaterialIcon

upload_2017-3-21_7-17-12.png


The some thing to color ( look last 2 records in code )
Where i wrong ?
Thank you
 
Top