Searched refs:mBottomGlow (Results 1 – 2 of 2) sorted by relevance
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
D | RecyclerView.java | 449 private EdgeEffect mLeftGlow, mTopGlow, mRightGlow, mBottomGlow; field in RecyclerView 2338 EdgeEffectCompat.onPull(mBottomGlow, overscrollY / getHeight(), 1f - x / getWidth()); in pullGlows() 2361 if (mBottomGlow != null) { in releaseGlows() 2362 mBottomGlow.onRelease(); in releaseGlows() 2363 needsInvalidate |= mBottomGlow.isFinished(); in releaseGlows() 2384 if (mBottomGlow != null && !mBottomGlow.isFinished() && dy < 0) { in considerReleasingGlowsOnScroll() 2385 mBottomGlow.onRelease(); in considerReleasingGlowsOnScroll() 2386 needsInvalidate |= mBottomGlow.isFinished(); in considerReleasingGlowsOnScroll() 2407 mBottomGlow.onAbsorb(velocityY); in absorbGlows() 2456 if (mBottomGlow != null) { in ensureBottomGlow() [all …]
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 390 private EdgeEffect mLeftGlow, mTopGlow, mRightGlow, mBottomGlow; field in RecyclerView 2089 mBottomGlow.onPull(overscrollY / getHeight(), 1f - x / getWidth()); in pullGlows() 2112 if (mBottomGlow != null) { in releaseGlows() 2113 mBottomGlow.onRelease(); in releaseGlows() 2135 if (mBottomGlow != null && !mBottomGlow.isFinished() && dy < 0) { in considerReleasingGlowsOnScroll() 2136 mBottomGlow.onRelease(); in considerReleasingGlowsOnScroll() 2158 mBottomGlow.onAbsorb(velocityY); in absorbGlows() 2207 if (mBottomGlow != null) { in ensureBottomGlow() 2210 mBottomGlow = new EdgeEffect(getContext()); in ensureBottomGlow() 2212 mBottomGlow.setSize(getMeasuredWidth() - getPaddingLeft() - getPaddingRight(), in ensureBottomGlow() [all …]
|