hi,
do I need to loop over all items to clear an whole listview?
it looks like only the selected item is cleared with the clear method.
With
or
I always have new text over old text in some cells.
So looking for a way clear and refresh (refill) a listview with new values.
Thx
do I need to loop over all items to clear an whole listview?
it looks like only the selected item is cleared with the clear method.
With
B4X:
PlayListView.Clear
B4X:
Do While PlayListView.Size > 0
PlayListView.RemoveAt(0)
Loop
So looking for a way clear and refresh (refill) a listview with new values.
Thx