Hello,
I would like to put the characters of this list in normal (not bold), how to do?
Thank you
I would like to put the characters of this list in normal (not bold), how to do?
Thank you
[B4X] XUI Views - Cross platform views and dialogs
XUI Views is a b4x library (https://www.b4x.com/android/forum/threads/100383/#content). The same b4xlib library is compatible with B4A, B4i and B4J It is a collection of custom views and dialogs. Everything is written in B4X. The source code is included inside the b4xlib file, which is a zip...
www.b4x.com
B4X:
Sub CreateListFavoriLayout
ListFavori = xui.CreatePanel("")
ListFavori.SetLayoutAnimated(0, 0, 0, 300dip, 300dip)
ListFavori.LoadLayout("ListTemplate") 'ListTemplate is part of XUI Views library.
CustomListView1.sv.SetColorAndBorder(xui.Color_Transparent, 0, 0, 0)
CustomListView1.Clear
resultat=SQL2.ExecQuery("SELECT nomcommune,inseecommune FROM favori ORDER BY nomcommune ASC")
resultat.Position = 0
For i = 0 To resultat.RowCount - 1
resultat.Position = i
CustomListView1.AddTextItem(resultat.GetString("nomcommune"),resultat.GetString("inseecommune"))
Next
End Sub