JazzyViewPager icon indicating copy to clipboard operation
JazzyViewPager copied to clipboard

List view scroll not working inside view pager

Open BhavikaMamtora opened this issue 9 years ago • 2 comments

BhavikaMamtora avatar Jul 02 '15 09:07 BhavikaMamtora

I had this problem with stack animation and scrollview , did you fix that?

shayanpourvatan avatar Sep 28 '15 15:09 shayanpourvatan

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.

shayanpourvatan avatar Sep 28 '15 15:09 shayanpourvatan