How to create a marquee effect for a text of smaller length not exceeding the screen size in Android?

前端 未结 5 1066
走了就别回头了
走了就别回头了 2020-12-03 16:18

I have been trying to give the marquee effect for the word HELLO in my application but android does not allow the same unless the length of the text exceeds the screen size.

5条回答
  •  抹茶落季
    2020-12-03 17:05

    There is a simple solution

    You have to create a WebView and display marquee like this code below.

    webView = (WebView)findViewById(R.id.web);
    
    String summary = ""
                    + "Hello Droid" + "";
    
    webView.loadData(summary, "text/html", "utf-8");
    

提交回复
热议问题