Home
last modified time | relevance | path

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

/packages/apps/Music/src/com/android/music/
DMediaPlaybackActivity.java193 int scrollx = tv.getScrollX(); in onTouch() local
198 scrollx += delta; in onTouch()
199 if (scrollx > mTextWidth) { in onTouch()
201 scrollx -= mTextWidth; in onTouch()
202 scrollx -= mViewWidth; in onTouch()
204 if (scrollx < -mViewWidth) { in onTouch()
206 scrollx += mViewWidth; in onTouch()
207 scrollx += mTextWidth; in onTouch()
209 tv.scrollTo(scrollx, 0); in onTouch()