Home | History | Annotate | Download | only in widget

Lines Matching defs:marquee

322      * Draw marquee text with fading edges as usual
327 * Draw marquee text as ellipsize end while inactive instead of with the fade.
333 * Draw marquee text with fading edges because it is currently active/animating.
595 private Marquee mMarquee;
604 * extensively in the same layout. This mode indicates how the marquee
605 * is currently being shown, if applicable. (mEllipsize will == MARQUEE)
1580 setEllipsize(TextUtils.TruncateAt.MARQUEE);
5270 && ((Spanned) text).getSpanStart(TextUtils.TruncateAt.MARQUEE) >= 0) {
5278 setEllipsize(TextUtils.TruncateAt.MARQUEE);
6133 if (mRestartMarquee && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
7839 final boolean switchEllipsize = mEllipsize == TruncateAt.MARQUEE
7842 if (mEllipsize == TruncateAt.MARQUEE
7854 TruncateAt oppositeEllipsize = effectiveEllipsize == TruncateAt.MARQUEE
7855 ? TruncateAt.END : TruncateAt.MARQUEE;
7926 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
7930 // start the marquee immediately
7934 // Defer the start of the marquee until we know our width (see setFrame())
8024 if (overflow > 0.0f && overflow <= Marquee.MARQUEE_DELTA_MAX) {
8499 if (mEllipsize != TextUtils.TruncateAt.MARQUEE) {
9078 * {@link android.text.TextUtils.TruncateAt#MARQUEE} are supported
9097 * Sets how many times to repeat the marquee animation. Only applied if the
9098 * TextView has marquee enabled. Set to -1 to repeat indefinitely.
9109 * Gets the number of times the marquee animation is repeated. Only meaningful if the
9110 * TextView has marquee enabled.
9112 * @return the number of times the marquee animation is repeated. -1 if the animation
9211 if (mMarquee == null) mMarquee = new Marquee(this);
9233 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
9639 if (selected != wasSelected && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
9810 final Marquee marquee = mMarquee;
9811 if (marquee.shouldDrawLeftFade()) {
9812 return getHorizontalFadingEdgeStrength(marquee.getScroll(), 0.0f);
9827 final Marquee marquee = mMarquee;
9828 return getHorizontalFadingEdgeStrength(marquee.getMaxFadeScroll(), marquee.getScroll());
9858 return mEllipsize == TextUtils.TruncateAt.MARQUEE
11728 private static final class Marquee {
11753 Marquee(TextView v) {