Searched defs:mTotalUnconsumed (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java112 private float mTotalUnconsumed; field in class:SwipeRefreshLayout
759 mTotalUnconsumed = 0;
767 if (dy > 0 && mTotalUnconsumed > 0) {
768 if (dy > mTotalUnconsumed) {
769 consumed[1] = dy - (int) mTotalUnconsumed;
770 mTotalUnconsumed = 0;
772 mTotalUnconsumed -= dy;
775 moveSpinner(mTotalUnconsumed);
780 // If we get back to mTotalUnconsumed == 0 and there is more to go, hide
782 if (mUsingCustomStart && dy > 0 && mTotalUnconsumed
[all...]

Completed in 71 milliseconds