Is there any way to enable text marquee when text is shorter than textview?
Asked
Active
Viewed 359 times
1 Answers
0
Set the elipsize property in TextView to marquee in the xml file
android:ellipsize="marquee"
and then create an object for the TextView in your onCreate method of your activity and set the setSelectedProperty to true
textview1.setSelected(true)
-
Thanks but android:ellipsize="marquee" and setSelected(true) doesn't help. – Ihor DIM Aug 27 '12 at 07:48