Skip to content

Commit

Permalink
Merge pull request Maxwin-z#5 from cattong/master
Browse files Browse the repository at this point in the history
下拉加载状态下,再次下载的bug
  • Loading branch information
Maxwin-z committed Feb 11, 2014
2 parents 8ec79a2 + fe920fc commit ecf78ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/me/maxwin/view/XListView.java
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ public boolean onTouchEvent(MotionEvent ev) {
} else if (getLastVisiblePosition() == mTotalItemCount - 1) {
// invoke load more.
if (mEnablePullLoad
&& mFooterView.getBottomMargin() > PULL_LOAD_MORE_DELTA) {
&& mFooterView.getBottomMargin() > PULL_LOAD_MORE_DELTA
&& !mPullLoading) {
startLoadMore();
}
resetFooterHeight();
Expand Down

0 comments on commit ecf78ee

Please sign in to comment.