Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTextView.java538 private Marquee mMarquee; field in TextView
5847 if (mMarquee != null && mMarquee.isRunning()) { in onDraw()
5848 final float dx = -mMarquee.getScroll(); in onDraw()
5862 if (mMarquee != null && mMarquee.shouldDrawGhost()) { in onDraw()
5863 final float dx = mMarquee.getGhostOffset(); in onDraw()
8022 if ((mMarquee == null || mMarquee.isStopped()) && (isFocused() || isSelected()) && in startMarquee()
8035 if (mMarquee == null) mMarquee = new Marquee(this); in startMarquee()
8036 mMarquee.start(mMarqueeRepeatLimit); in startMarquee()
8041 if (mMarquee != null && !mMarquee.isStopped()) { in stopMarquee()
8042 mMarquee.stop(); in stopMarquee()
[all …]