1

I have added marquee in TextView and its working fine but it give some delay to restart again while scrolling .

I dig up TextView class as well and find

      private static final MARQUEE_DELAY =1200;
      private static final MARQUEE_RESTART_DELAY =1200;

Please help me to change MARQUEE_DELAY or MARQUEE_RESTART_DELAY time dynamically ...

AndroidLad
  • 687
  • 7
  • 14

1 Answers1

0

I think you can achieve this using the Java Reflection API.

See this question for more info.

OR

Make sure to either set the TextView gravity to Gravity.LEFT or Gravity.CENTER.

Moz
  • 109
  • 2
  • 10