Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTextView.java515 private Marquee mMarquee; field in TextView
5705 if (mMarquee != null && mMarquee.isRunning()) { in onDraw()
5706 final float dx = -mMarquee.getScroll(); in onDraw()
5720 if (mMarquee != null && mMarquee.shouldDrawGhost()) { in onDraw()
5721 final float dx = mMarquee.getGhostOffset(); in onDraw()
7830 if ((mMarquee == null || mMarquee.isStopped()) && (isFocused() || isSelected()) && in startMarquee()
7843 if (mMarquee == null) mMarquee = new Marquee(this); in startMarquee()
7844 mMarquee.start(mMarqueeRepeatLimit); in startMarquee()
7849 if (mMarquee != null && !mMarquee.isStopped()) { in stopMarquee()
7850 mMarquee.stop(); in stopMarquee()
[all …]