Searched refs:mTopGlow (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 2334 EdgeEffectCompat.onPull(mTopGlow, -overscrollY / getHeight(), x / getWidth()); in pullGlows() 2353 if (mTopGlow != null) { in releaseGlows() 2354 mTopGlow.onRelease(); in releaseGlows() 2355 needsInvalidate |= mTopGlow.isFinished(); in releaseGlows() 2380 if (mTopGlow != null && !mTopGlow.isFinished() && dy > 0) { in considerReleasingGlowsOnScroll() 2381 mTopGlow.onRelease(); in considerReleasingGlowsOnScroll() 2382 needsInvalidate |= mTopGlow.isFinished(); in considerReleasingGlowsOnScroll() 2404 mTopGlow.onAbsorb(-velocityY); in absorbGlows() 2442 if (mTopGlow != null) { in ensureTopGlow() [all …]
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 390 private EdgeEffect mLeftGlow, mTopGlow, mRightGlow, mBottomGlow; field in RecyclerView 2085 mTopGlow.onPull(-overscrollY / getHeight(), x / getWidth()); in pullGlows() 2104 if (mTopGlow != null) { in releaseGlows() 2105 mTopGlow.onRelease(); in releaseGlows() 2131 if (mTopGlow != null && !mTopGlow.isFinished() && dy > 0) { in considerReleasingGlowsOnScroll() 2132 mTopGlow.onRelease(); in considerReleasingGlowsOnScroll() 2155 mTopGlow.onAbsorb(-velocityY); in absorbGlows() 2193 if (mTopGlow != null) { in ensureTopGlow() 2196 mTopGlow = new EdgeEffect(getContext()); in ensureTopGlow() 2198 mTopGlow.setSize(getMeasuredWidth() - getPaddingLeft() - getPaddingRight(), in ensureTopGlow() [all …]
|