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

前端 未结 5 1114
走了就别回头了
走了就别回头了 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 16:45

    Here is the Full Code for Your Problem:

    Main_Activity.java Code:'

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

    main_activity.xml code:

提交回复
热议问题