Android Question Custom font in BBScrollingLabel or XUI ScrollingLabel

Binary Soft

Member
Licensed User
Longtime User
Hi,

I want to change my custom font in bbscrollinglabel or xui scrollinglabel.
I use cs builder for it. But it does not work.

B4X:
Dim cs As CSBuilder

cs.Initialize.Size(16).Typeface(share.customfont).Color(Colors.Black).Append(string1).PopAll

myscrollinglabel.Text = cs
 

Binary Soft

Member
Licensed User
Longtime User
Hi,

I want to change my custom font in bbscrollinglabel or xui scrollinglabel.
I use cs builder for it. But it does not work.

B4X:
Dim cs As CSBuilder

cs.Initialize.Size(16).Typeface(share.customfont).Color(Colors.Black).Append(string1).PopAll

myscrollinglabel.Text = cs

Custom font is solved with TextEngine.CustomFonts.
But BBScrollingLabel's single line is not work.
 
Upvote 0
Top