attach test code.
i use the CustomListView,display some data,and always lost some items display in listview or display not completely.
see screenshoot.jpeg.
another question:why customlistview display the index order of items which not my wish(order from 0 to 12) ?
please anyone help me?
thks
you can create whatever you like (even without this module) but it requires more code.
B4X:
For i=0 To usermap.Size-1
Dim p As Panel
Dim l As Label
p.Initialize("")
l.Initialize("")
l.Text=usermap.GetValueAt(i)
l.TextColor=Colors.White
l.TextSize=30
p.AddView(l,0,0,100%x,50dip)
clv.addCView(p,50dip,0,"")
Next