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.
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: