How can I have a marquee using MaxLines instead of SingleLine ?
This is my TextView :
You can try using this :
android:maxLength = "10"
OR
After setting android:maxLines="1", you have to set your inputType too. So, set your android:inputType="text" and that should do the trick.
android:maxLines="1"
inputType
android:inputType="text"