You can use some, like how WebView, and apply the scroll properties on this WebViewas follows:
In android, it looks like the following:
String summary = "<html><body><marquee>This is basic example of marquee</marquee></body></html>";
webview.loadData(summary, "text/html", null);
The text will move from right to left.
I donβt know how to do this on iPhone or iOS ,
But you also use it in your iOS UIWebViewObject.
Hope this will be helpful for you.
You can also use javascript in WebViewand can apply various types of scrolling.
source
share