I know onListItemClick method to handle click listener as below.
protected void onListItemClick(ListView l, View v, int position, long id){
}
But if I want to handle touch listener.
While item be touched, I want to get the position.
But not do in onListItemClick.
How can I do in ListView?
Is there any method such above?
you need to invoke
onInterceptTouchEvent()methodPlease check out my answer here.