Home
last modified time | relevance | path

Searched refs:mEdgeGlowBottom (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/java/android/widget/
H A DScrollView.java124 public EdgeEffect mEdgeGlowBottom; field in ScrollView
230 mEdgeGlowBottom = new EdgeEffect(context, attrs); in ScrollView()
306 mEdgeGlowBottom.setColor(color); in setBottomEdgeEffectColor()
347 return mEdgeGlowBottom.getColor(); in getBottomEdgeEffectColor()
715 if (!mEdgeGlowBottom.isFinished()) { in onInterceptTouchEvent()
1564 if (unconsumed < 0 && mEdgeGlowBottom != null && mEdgeGlowBottom.getDistance() != 0f) { in consumeFlingInStretch()
1569 mEdgeGlowBottom.onRelease(); in consumeFlingInStretch()
1571 mEdgeGlowBottom.finish(); in consumeFlingInStretch()
1906 mEdgeGlowBottom.onRelease(); in endDrag()
2004 if (!mEdgeGlowBottom.isFinished()) { in draw()
[all …]
H A DAbsListView.java764 public EdgeEffect mEdgeGlowBottom; field in AbsListView
922 mEdgeGlowBottom = new EdgeEffect(context); in AbsListView()
3883 mEdgeGlowBottom.onRelease(); in releaseGlow()
4363 mEdgeGlowBottom.onRelease(); in onTouchUp()
4427 if (unconsumed > 0 && mEdgeGlowBottom != null && mEdgeGlowBottom.getDistance() != 0f) { in consumeFlingInStretch()
4433 mEdgeGlowBottom.finish(); in consumeFlingInStretch()
4471 mEdgeGlowBottom.onRelease(); in onTouchCancel()
4649 if (!mEdgeGlowBottom.isFinished()) { in draw()
6646 mEdgeGlowBottom.finish(); in finishGlows()
6774 mEdgeGlowBottom.setColor(color); in setBottomEdgeEffectColor()
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/
H A DScrollViewFunctionalTest.java66 PollingCheck.waitFor(() -> mScrollView.mEdgeGlowBottom.getDistance() > 0); in testScrollAfterFlingBottom()
67 PollingCheck.waitFor(() -> mScrollView.mEdgeGlowBottom.getDistance() == 0f); in testScrollAfterFlingBottom()