How can I use marquee text in an android application?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Here is an example:
The xml file with the textview:
|
|||||||||||||||||
|
This only works when your |
|||||||
|
|
|||
|
|
|
To get this to work, I had to use ALL three of the things (ellipsize, selected, and singleLine) mentioned already:
|
|||
|
|
|
As well as the XML settings identified by droidgren, my tests have shown that if the text you want to display is shorter than the width of the textview, then the marquee won't scroll at all. Possible solutions are to set the width of the view to a size smaller than the length of the text, or to concatenate the string to itself 2 or 3 times, with perhaps appropriate whitespace in-between so that the scrolling looks ok. |
|||
|
|