Scrolling In View Pager
I have an activity in which I have taken single tab layout and content of this tab layout is contained inside a viewpager. This is my part of the code of main activity containing t
Solution 1:
Please add touchlistener on ExpandableListView
yourRecyclerview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});
Post a Comment for "Scrolling In View Pager"