I ran into a similar problem where I wanted to jump to the bottom of list and it would not respond. After stuggling a little, I solved it by using:
B4X:
Dim n As Int = CLVConversation.size
CLVConversation.JumpToItem(n - 1)
'next 2 lines needed to ensure jumpto last line
Sleep(0)
CLVConversation.JumpToItem(n - 1)