Home | History | Annotate | Download | only in widget

Lines Matching defs:marquee

247      * Draw marquee text with fading edges as usual
252 * Draw marquee text as ellipsize end while inactive instead of with the fade.
258 * Draw marquee text with fading edges because it is currently active/animating.
481 private Marquee mMarquee;
490 * extensively in the same layout. This mode indicates how the marquee
491 * is currently being shown, if applicable. (mEllipsize will == MARQUEE)
1272 setEllipsize(TextUtils.TruncateAt.MARQUEE);
3926 ((Spanned) text).getSpanStart(TextUtils.TruncateAt.MARQUEE) >= 0) {
3934 setEllipsize(TextUtils.TruncateAt.MARQUEE);
4655 if (mRestartMarquee && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
5400 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
6275 final boolean switchEllipsize = mEllipsize == TruncateAt.MARQUEE &&
6278 if (mEllipsize == TruncateAt.MARQUEE &&
6290 TruncateAt oppositeEllipsize = effectiveEllipsize == TruncateAt.MARQUEE ?
6291 TruncateAt.END : TruncateAt.MARQUEE;
6366 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
6370 // start the marquee immediately
6374 // Defer the start of the marquee until we know our width (see setFrame())
6463 if (overflow > 0.0f && overflow <= Marquee.MARQUEE_DELTA_MAX) {
6830 if (mEllipsize != TextUtils.TruncateAt.MARQUEE) {
7382 * {@link android.text.TextUtils.TruncateAt#MARQUEE} are supported
7401 * Sets how many times to repeat the marquee animation. Only applied if the
7402 * TextView has marquee enabled. Set to -1 to repeat indefinitely.
7413 * Gets the number of times the marquee animation is repeated. Only meaningful if the
7414 * TextView has marquee enabled.
7416 * @return the number of times the marquee animation is repeated. -1 if the animation
7515 if (mMarquee == null) mMarquee = new Marquee(this);
7537 if (mEllipsize == TextUtils.TruncateAt.MARQUEE) {
7934 if (selected != wasSelected && mEllipsize == TextUtils.TruncateAt.MARQUEE) {
8065 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
8068 final Marquee marquee = mMarquee;
8069 if (marquee.shouldDrawLeftFade()) {
8070 final float scroll = marquee.getScroll();
8103 if (mEllipsize == TextUtils.TruncateAt.MARQUEE &&
8106 final Marquee marquee = mMarquee;
8107 final float maxFadeScroll = marquee.getMaxFadeScroll();
8108 final float scroll = marquee.getScroll();
9266 private static final class Marquee {
9292 Marquee(TextView v) {