Skip to content

Commit

Permalink
Update src/me/maxwin/view/XListView.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cattong committed Jan 25, 2013
1 parent 8ec79a2 commit c0d16ca
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 c0d16ca

Please sign in to comment.