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?
Here is the solution :
Set this in layout file :
And set this in activity :
tv = (TextView) findViewById(R.id.textId); tv.setSelected(true);
In My case this is moving text from right to left.