JazzyViewPager
JazzyViewPager copied to clipboard
List view scroll not working inside view pager
I had this problem with stack animation and scrollview , did you fix that?
i fixed this issue with following code, might be useful for others:
if (mState == State.IDLE && mRight != null) {
mRight.setVisibility(View.GONE);
} else if (mState != State.IDLE && mRight != null && mRight.getVisibility() == GONE) {
mRight.setVisibility(View.VISIBLE);
}
put this code in the end of onPageScrolled
method.