How to reverse the direction of marquee of a TextView

前端 未结 8 945
孤城傲影
孤城傲影 2020-11-30 05:16

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?

8条回答
  •  星月不相逢
    2020-11-30 05:52

    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.

提交回复
热议问题