ScrollChoice icon indicating copy to clipboard operation
ScrollChoice copied to clipboard

Swipe slowly you can found this "bug"

Open conscious01 opened this issue 8 years ago • 2 comments

actually this found by Test coworker, looking forward the solution

device-2017-10-10-115822

conscious01 avatar Oct 10 '17 06:10 conscious01

you can set scroll limit on the scroll. like this `` if (Math.abs(velocity) > minimumVelocity) { scroller.fling(0, scrollOffsetY, 0, velocity, 0, 0, minFlingY, maxFlingY); scroller.setFinalY( scroller.getFinalY() + computeDistanceToEndPoint(scroller.getFinalY() % mItemHeight)); } else {

if( scrollOffsetY > maxFlingy){ scrollOffsetY = maxFlingY; }

if(scrollOffsetY < minFlingY){ scrollOffsetY = minFlingy; } scroller.startScroll(0, scrollOffsetY, 0, computeDistanceToEndPoint(scrollOffsetY % mItemHeight)); }

liyuwhy avatar Aug 01 '19 08:08 liyuwhy

happens when you scroll past a point too, to the top and bottom, any fix available for this? Found no other library which lets you change the bg colour of the selected item.

nanduk667 avatar Aug 21 '20 10:08 nanduk667