I am writing an custom ViewGroup and following neevek to get touch interruption between parent and Child(ListView). Here Custom ViewGroup help to uplift ListView.
What I need: So once ListView uplift at top, I want to start scroll it for which I need to interrupt ParentTouch event and allow control back to child.
I tried with ListView.getParent().requestDisallowInterceptTouchEvent(flag);
but it's not working.
Any suggestion here !