I have the following code, which with the same text, typeface and size, produces a different result. Why is this?
B4X:
Dim l As Label
l.Initialize("")
Activity.AddView(l, 0,0,100%x,50dip)
l.Typeface=Main.fontLight
l.textsize=16
l.textcolor=Colors.black
l.Text="Controlar los accesos desde la comodidad de tu c"
l.BringToFront
l.SingleLine=True
l.Color=Colors.white
Dim l As Label
l.Initialize("")
Activity.AddView(l, 0,50dip,100%x,50dip)
cs.Initialize().Typeface(Main.fontLight).Size(16).Color(Colors.black).Append("Controlar los accesos desde la comodidad de tu c").PopAll
l.text=cs
l.BringToFront
l.SingleLine=True
l.SingleLine=True
l.Color=Colors.yellow