1

I know that can use onInterceptTouchEvent on Override over a custom listview by extending. How Can set this event,or handle it. Notice, I know setOnTouchListener can stop scrolling from this

but this can not help me. can everyone help me? thank you!

Community
  • 1
  • 1
ali shekari
  • 740
  • 1
  • 11
  • 26
  • [go to this page for more information][1] [1]: http://stackoverflow.com/questions/17719787/custom-onintercepttouchevent-in-listview – Mohamed Salemyan Aug 03 '13 at 09:41

1 Answers1

0

Unfortunately as Android API level 19 (4.4 KitKat) there is not any handler method and interface to perform a hypothetical setOnInterceptTouchEventListener() or similar. So a boilerplate class extending ListView must be created in order to override onInterceptTouchEvent().

AxeEffect
  • 6,345
  • 4
  • 37
  • 33