I want to reverse the direction of marquee in the TextView. By default, the text moves from Right to Left, I want it to move from Left to Right. How can I do this?
|
feedback
|
|
I figured out a very simple and easy way to do this. I made a marquee effect to move in both directions depending on our selection. So, here is the trick: I used a TextView inside a HorizontalScrollView. I controlled its scrolling in a programmatic way. I got length of text using:
Then I used Handler and called it recursively until I reach the scroll limit. In this handler I made my HorizontalScrollView to scroll to a certain position:
And here it goes, a smooth marquee from Left to Right. Cheers! | |||
|
feedback
|
|
The functionality you are looking for does not appear to be available at this time. You could create your own reverse marquee textview from the source in TextView.java but there are quite a few references to "marquee" within it. I counted more than 50 so it may take some time to reverse the scroll direction. I thought some bi-directional language support might allow you to trick the textview into scrolling left to right but Android does not seem to support RTL languages very well. For now your only option would be to accept the direction of the marquee or create your own TextView class that supports your functionality. I would look at this section from line 3810 - 3815
removing the minus sign before mMarquee becomes:
obvously you will need to make additional changes but this would point you in the right direction (literally). | ||||
|
feedback
|
|
I would suggest you create your own component with this behavior. Like this: ViewFlipper with a single TextView as it's child (with your text displayed).
Marquee in:
Marquee out:
You have to tweak a bit the duration to make it look like a "native" animation. :-) | |||||
feedback
|
|
Here is the solution : Set this in layout file :
And set this in activity :
In My case this is moving text from right to left. | |||
feedback
|