Android Question xcustomlistview scrolling to the end

yfleury

Active Member
Licensed User
Longtime User
B4X:
Sub Button1_Click
    CustomListView1.AddTextItem("Compteur " & compteur, 1)
    CustomListView1.ScrollToItem((CustomListView1.Size-1))
    compteur=compteur+1
End Sub

the last item is always hide. I have to scroll it manually to see last item. Is it way to show last item each time I add one?
 
Top