Marquee in TextView - Android

1

I would like to know if you can do the marquee effect on textview the text is too large, and I do not want to break line, I want the text to move from right to left horizontally.

The text I want to manipulate and what contains the music information

    
asked by anonymous 25.07.2018 / 18:30

1 answer

0
<TextView
        android:id="@+id/scrollingText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="40dp"
        android:text="Texto aqui"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:singleLine="true"
        android:scrollHorizontally="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit ="marquee_forever"/>
    
27.07.2018 / 21:08