1

Possible Duplicate:
marquee text in android

can we have ticker in android

Community
  • 1
  • 1
nilesh
  • 11
  • 1
  • 2

1 Answers1

1

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

Community
  • 1
  • 1
slup
  • 5,484
  • 4
  • 19
  • 14
  • i have done it but when i move cursor from that textview to other widget like bnutton or any other widget ,the text in the textview will not move like ticker – nilesh Jul 06 '10 at 10:24
  • can anybody have solution for this problem of ticker in android – nilesh Jul 08 '10 at 04:36