Sign in Textview - Android

Asked

Viewed 112 times

1

I wonder if you have how to do the sign effect on a textview the text is too big, and I don’t 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 O texto que eu quero manipular e o que contem

  • 1

    From what you’re saying, it seems to be the case mark an answer as accepted. Here we do not write "solved" in the question. If you have an answer that really helped you, mark it as accepted. If you came to the solution on your own, put in the solution as an answer. So content is more organized and easier to find in the future by other people with similar problems.

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"/>
  • I can change the speed ?

Browser other questions tagged

You are not signed in. Login or sign up in order to post.