Hello
I am developing an app in which i would like to scroll text in marquee.
Only a part of text is getting scrolled.Is there any way where i can scroll the entire text.
Also please let me know if i can scroll the text continuously as my code scrolls on focus.
I am using the below code
<TextView
android:id="@+id/widget28"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:fadingEdge="horizontal"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="100"
android:scrollHorizontally="true"
android:text="Simple application that shows how to use RelativeLayout" >
Please let me know your valuable suggestions
Thanks in advance