I have created a custom list view . In each listitem i have a textview. I need to apply marquee for it whenever users touches that particular list item.
i had tried setting
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
This work when i putted setselected(true); in getview(), but for every item of the list. I need to enable the marquee only for the focused/pressed item.
I think when you touch on an item, at this time, you get TextView after that set marquee for it.Goodluck.