Android Question Using different fonts in the label control

oliverm

Member
Licensed User
Longtime User
Is there a way to use different fonts in the default label control? Currently there seems to be Serif, San Serif, Default and one or two others.

Olly
 

DonManfred

Expert
Licensed User
Longtime User
You can load another font into an control...
B4X:
lblInfo.Typeface = Typeface.LoadFromAssets("roboto-light.ttf")
 
Upvote 0
Top