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.
There is a simple solution
You have to create a WebView and display marquee like this code below.
WebView
webView = (WebView)findViewById(R.id.web); String summary = "" + "Hello Droid" + ""; webView.loadData(summary, "text/html", "utf-8");