Hi this is my first post, so I hope you'll forgive any etiquette errors.
I am having a problem where, when an item is selected on a listview, if that item is not actively clicked (i.e. the user just scrolls to it) the itemclick event is not triggered and the index doesn't change. Does anyone have a workaround for this?
On the layout, the user selects an item from list1 then from list2 and presses 'go' to start the next activity.
Sub list2_ItemClick (Position As Int, Value As Object)
ln2Pos = Position
ToastMessageShow(Value,False)
End Sub
The toast pops up only when they click, so when they don't the global variable ln2pos is left at its initial value (0).
I hope what I'm asking for is clear. Anyone have a solution?
Thanks,
Vaughan
I am having a problem where, when an item is selected on a listview, if that item is not actively clicked (i.e. the user just scrolls to it) the itemclick event is not triggered and the index doesn't change. Does anyone have a workaround for this?
On the layout, the user selects an item from list1 then from list2 and presses 'go' to start the next activity.
Sub list2_ItemClick (Position As Int, Value As Object)
ln2Pos = Position
ToastMessageShow(Value,False)
End Sub
The toast pops up only when they click, so when they don't the global variable ln2pos is left at its initial value (0).
I hope what I'm asking for is clear. Anyone have a solution?
Thanks,
Vaughan