Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java99 final float hscroll; in onGenericMotionEvent() local
102 hscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent()
105 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL); in onGenericMotionEvent()
109 if (hscroll < 0) { in onGenericMotionEvent()
110 handled |= scrollLeft(widget, text, (int)Math.ceil(-hscroll)); in onGenericMotionEvent()
111 } else if (hscroll > 0) { in onGenericMotionEvent()
112 handled |= scrollRight(widget, text, (int)Math.ceil(hscroll)); in onGenericMotionEvent()