I am developing an AppWidget where I need a TextView to display text as a selection area. I tried using the following code (as in normal Activity ), but the text does not scroll.
<TextView android:layout_width="150dip" android:layout_height="wrap_content" android:text="@string/marquee_forever" android:singleLine="true" android:ellipsize="marquee" android:marqueeRepeatLimit="marquee_forever" />
Can someone tell me how to fix this?
android textview android-appwidget marquee
Leo
source share