Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFastScroller.java405 float dragScrollRatio = (y - verticalScrollStart) / verticalScrollLength; in handleDragMove() local
406 dragScrollRatio = Math.max(dragScrollRatio, 0.0f); in handleDragMove()
407 dragScrollRatio = Math.min(dragScrollRatio, 1.0f); in handleDragMove()
411 final int itemPos = (int)((itemCount - 1) * dragScrollRatio); in handleDragMove()