How to reverse the direction of marquee of a TextView

前端 未结 8 948
孤城傲影
孤城傲影 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:58

    Another simple way is using HTML and also you can change direction easily direction="Left"

    text your
    

    And Pass to WebView

    webView.loadDataWithBaseURL(null, yourhtmltext, "text/html" , null, null);
    

提交回复
热议问题