Dim cs As CSBuilder
cs.Initialize
cs.Font(Font.DEFAULT_BOLD).Color(Colors.White).Append("Esempio").Append(CRLF).Pop.Pop
cs.Color(Colors.Yellow).Append("View:" & Rnd(1,1000000)).PopAll
clv1.Add(CreateListItem(cs, "test", clv1.AsView.Width, 15%y, i), i)
....
Sub CreateListItem(Text As CSBuilder, name_image As String, Width As Int, Height As Int, record As Int ) As Panel
There all kinds of ways to change the font. The exact details depend on your implementation.
As @MarcoRome wrote you can use CSBuilder. Make sure to remove the AutoScaleAll call from the item layout file or it will reset the font size.
Also make sure to use xCustomListView library.
@MarcoRome ,@Erel,Thanks to give me good solution.I'm a newbie in B4i, a simple method is better for me,so I decide to replace xCustomListView module to library.