Home | History | Annotate | Download | only in widget

Lines Matching defs:marquee

302     private Marquee mMarquee;
378 * extensively in the same layout. This mode indicates how the marquee
379 * is currently being shown, if applicable. (mEllipsize will == MARQUEE)
390 * Draw marquee text with fading edges as usual
395 * Draw marquee text as ellipsize end while inactive instead of with the fade.
401 * Draw marquee text with fading edges because it is currently active/animating.
1054 setEllipsize(TextUtils.TruncateAt.MARQUEE);
3183 ((Spanned) text).getSpanStart(TextUtils.TruncateAt.MARQUEE) >= 0) {
3191 setEllipsize(TextUtils.TruncateAt.MARQUEE);
4161 if (mRestartMarquee && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
4901 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
6204 final boolean switchEllipsize = mEllipsize == TruncateAt.MARQUEE &&
6207 if (mEllipsize == TruncateAt.MARQUEE &&
6219 TruncateAt oppositeEllipsize = effectiveEllipsize == TruncateAt.MARQUEE ?
6220 TruncateAt.END : TruncateAt.MARQUEE;
6295 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
6299 // start the marquee immediately
6303 // Defer the start of the marquee until we know our width (see setFrame())
6392 if (overflow > 0.0f && overflow <= Marquee.MARQUEE_DELTA_MAX) {
6748 if (mEllipsize != TextUtils.TruncateAt.MARQUEE) {
7263 * {@link android.text.TextUtils.TruncateAt#MARQUEE}* are only supported
7282 * Sets how many times to repeat the marquee animation. Only applied if the
7283 * TextView has marquee enabled. Set to -1 to repeat indefinitely.
7365 if (mMarquee == null) mMarquee = new Marquee(this);
7387 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
7396 private static final class Marquee extends Handler {
7425 Marquee(TextView v) {
8297 if (selected != wasSelected && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
8609 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
8612 final Marquee marquee = mMarquee;
8613 if (marquee.shouldDrawLeftFade()) {
8614 return marquee.mScroll / getHorizontalFadingEdgeLength();
8639 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
8642 final Marquee marquee = mMarquee;
8643 return (marquee.mMaxFadeScroll - marquee.mScroll) / getHorizontalFadingEdgeLength();