views:

402

answers:

1

I want to have a simple TextView with horizontal scrolling, I know that I use HorizontalScrollview for that and I want the text to be autoscrolled continuously. Is that possible?

+1  A: 

You could use android:ellipsize="marquee" in the TextView attributes or by implement your own animation

Francesco
A side note: The default marquee animation starts only if the TextView being selected.
Francesco