I added a new event to
V1.05 TouchStateChanged.
Not tested as I have absolutely no time, but it is the same principle as with the seek bars
As soon as you put your finger on the view the event is triggered and then you have to deactivate the list, when your figner is finished the event is triggered again and the list is reactivated. Works wonderfully in my cleantaks app with the priority seekbar
Private Sub ratingbar1_TouchStateChanged (Pressed As Boolean)
#If B4I
xclv_Main.sv.As(ScrollView).ScrollEnabled = Not (Pressed)
#End If
End Sub