I'm wanting to include CustomListView in a project but I need to be able to load some list items then JumpToItem to have a specific item shown from the items I've loaded.
Adding the following into Activity_Resume in the CustomListView example has no visible effect. Is there something else I should be doing to programmatically show the last list item?
Adding the following into Activity_Resume in the CustomListView example has no visible effect. Is there something else I should be doing to programmatically show the last list item?
B4X:
Sub Activity_Resume
clv1.JumpToItem(clv1.GetSize - 1)
clv1.ScrollToItem(clv1.GetSize - 1)
End Sub