ListView and Typeface

alfcen

Well-Known Member
Licensed User
Longtime User
Hi
Looks to me as if the ListView does not accept Typeface settings. Example:

B4X:
Dim MyFont As Typeface
MyFont = Typeface.LoadFromAssets("clockfont.ttf")
ListView1.TwoLinesAndBitmap.SecondLabel.Typeface = MyFont

doesn't work, but

B4X:
Label1.Typeface = MyFont

does.
 

alfcen

Well-Known Member
Licensed User
Longtime User
Yes, Andrew, I did that with success. Perhaps the sequence by which things happen is critical?
 
Upvote 0
Top