Listview

derez

Expert
Licensed User
Longtime User
Looks great !

I added 1 to the index and got an error, see photo.
B4X:
For i = 1 To 500
    ListView1.AddSingleLine("Item #" & i+1)
...

changed the code to this and it works.
B4X:
Dim k As Int
For i = 1 To 500
    k=i+1
    ListView1.AddSingleLine("Item #" & k)
......
 
Last edited:
Top