Here I have expandablelistview
in activity and as child I have dynamic TableView
which is added into FrameLayout
.
When I scroll TableView
vertically then it affect its parent scrollview
that means whole ExpandableListview
scrolled. Now I want that when I scroll TableView Content at that time I don't want to scroll ExpandableListView.
I have also tried v.getParent().requestDisallowInterceptTouchEvent(true);
and googling for that but i didn't get any solutions.
Help me guys.