Swipe slowly you can found this "bug"
actually this found by Test coworker, looking forward the solution

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)); }
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.