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

/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java113 private float mTotalUnconsumed; field in class:SwipeRefreshLayout
761 mTotalUnconsumed = 0;
769 if (dy > 0 && mTotalUnconsumed > 0) {
770 if (dy > mTotalUnconsumed) {
771 consumed[1] = dy - (int) mTotalUnconsumed;
772 mTotalUnconsumed = 0;
774 mTotalUnconsumed -= dy;
777 moveSpinner(mTotalUnconsumed);
782 // If we get back to mTotalUnconsumed == 0 and there is more to go, hide
784 if (mUsingCustomStart && dy > 0 && mTotalUnconsumed
[all...]

Completed in 62 milliseconds