Possible Duplicate:
marquee text in android
can we have ticker in android
I assume this is a follow up to https://stackoverflow.com/questions/3179283/ticker-in-android
In your xml-layout file, add this to your TextView
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
and in your code:
TextView tv = (TextView) findViewById(R.id.tv);
tv.setSelected(true);
why this is needed: http://code.google.com/p/android/issues/detail?id=5364