Android Question how to provide a visual hint: swipe up to see more items?

asales

Expert
Licensed User
Longtime User
Check if the options of Scrolled event of ULV can help you:
B4X:
Sub ULV_Scrolled(FirstVisibleItem As Int, VisibleItemCount As Int, TotalItemCount As Int, IsAtTop As Boolean, IsAtBottom As Boolean)
   Log(FirstVisibleItem)
   Log(VisibleItemCount)
   Log(TotalItemCount)
   Log("IsAtBottom: " & IsAtBottom)
End Sub

One tip: if you will need help from Informatix to ULV, the support that him provides is only by e-mail.
 
Upvote 0
Top