w446108264 / ScrollableLayout

Add a headview for any view and supports sticking the navigator on the top when ItemView scrolls.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

切换ViewPager会出现不能刷新状况

ArcherLucky opened this issue · comments

commented

如果page 1的scrollView已经到顶了,现在切换到page 2,此时page 2的scrollView没有到顶,会不能刷新,如果把ScrollableLayout的isCanPullToRefresh改成
if (getScrollY() <= 0 && !mIsHorizontalScrolling) { return true; } return false; }
就可以解决了