It provides a value, marquee, for android:ellipsize, and a new attribute, android:marqueeRepeatLimit.
However you could not make the TextView scrolling if you only set these 2 attributes.
According to my testing, at least the following 3 attributes shall be set:
android:ellipsize="marquee"
android:focusable="true"
android:singleLine="true"
And the TextView shall be focused while running.
Moreover, I found 2 limitations in current marquee implementation:
- Never scroll if the TextView does not get the focuse;
- The scrolling is odd because the round of scrolling begins from the left side while end at the right side. It looks like the animation is reset.