Android Question xCustomListView: Unable to scroll to last 3 items at bottom

toby

Well-Known Member
Licensed User
Longtime User
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

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

clvScrollToBottm.jpg

test app and screenshot attached.
 

Attachments

  • clvScrollToBottom.zip
    16 KB · Views: 57
Top