My test app adds 10 items to the clv each time the button is tapped. For reason unbeknownst to me, I couldn't see the last 3 items on the list.
I think that I've missed something obvious; could someone kindly point it out for me, please?
TIA
test app and screenshot attached.
I think that I've missed something obvious; could someone kindly point it out for me, please?
TIA
B4X:
Private Sub Button1_Click
'xui.MsgboxAsync("Hello world!", "B4X")
Dim startingItemCount As Int=clv1.Size
For i= startingItemCount+ 1 To startingItemCount +10
clv1.AddTextItem("item " & i, i)
Next
End Sub
test app and screenshot attached.