I tried to use the PreoptimizedCLV with the CLVIndexScroller class.
With customlistview works fine, but when I add the PreoptimizedCLV don't works.
Is possible to use this components together?
My code and example project - using the original PreoptimizedCLV example - is in attach.
Thanks in advance for any help.
With customlistview works fine, but when I add the PreoptimizedCLV don't works.
Is possible to use this components together?
My code and example project - using the original PreoptimizedCLV example - is in attach.
Thanks in advance for any help.
B4X:
PCLV.Initialize(Me, "PCLV", CustomListView1)
Dim words As List = File.ReadList(File.DirAssets, "english.txt")
For Each word As String In words
PCLV.AddItem(60dip, xui.Color_White, word)
Next
PCLV.ShowScrollBar = False
PCLV.Commit
clvIS.Initialize(CustomListView1,False,True,True)