How to marquee ListView in android? -


i want marquee listview in android end of listview item , @ end repeat marquee listview. tell me how can that.

you want marquee listview or listview's items textview ?for textview can use this

<textview     android:id="@+id/fact"     android:layout_width="200dp"     android:layout_height="40dip"     android:duplicateparentstate="true"     android:ellipsize="marquee"     android:focusable="true"     android:focusableintouchmode="true"     android:marqueerepeatlimit="marquee_forever"     android:scrollhorizontally="true"     android:singleline="true"     android:text="loading... more text see if spans or not , want more">      <requestfocus         android:duplicateparentstate="true"         android:focusable="true"         android:focusableintouchmode="true" /> </textview> 

Comments