I've tried all, I can think of to get this marquee effect to work. Here is my xml:
<TextView android:id="@+id/curPlaying"
android:layout_width="320dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:ellipsize="marquee"
android:scrollHorizontally="true"
android:singleLine="true"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:textColor="#83A602"
android:textSize="20dp"
android:text="Nothing Loaded" />
And I'm setting it as selected in code. The only thing why I think it might not be working is the text is getting modified by the code at relatively frequent intervals.
Help?