Android-PullToRefresh-SwipeMenuListView-Sample icon indicating copy to clipboard operation
Android-PullToRefresh-SwipeMenuListView-Sample copied to clipboard

还没有滑到底部就开始加载了。

Open Arthurshen98 opened this issue 8 years ago • 0 comments

再还没有滑到底部的时候,就已经开始加载了数据。 已经解决了: 在public boolean onTouchEvent(MotionEvent ev)中 case MotionEvent.ACTION_MOVE:中 的处理footer的那行:添加&& getLastVisiblePosition() == mTotalItemCount-1这个判断 那行是:} else if ((mFooterView.getBottomMargin() > 0 || deltaY < 0) && getLastVisiblePosition() == mTotalItemCount-1) { 添加那行就可以处理了。

Arthurshen98 avatar Feb 17 '17 02:02 Arthurshen98