I have a ListView with an OnScrollListener
and an OnItemClickListener
. When I click on an item, both the onScroll()
method in the OnScrollListener
and the OnItemClickListener
are fired.
Is there a way to prevent this behaviour? If not, how can I tell, inside onScroll()
, if the user is really scrolling or he's just clicking?