Я вижу, что у вас есть решение, но я покажу вам другой способ, с помощью которого ваш текстовый вид может автоматически скользить, если он слишком длинный и очень интересный.
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="marquee_forever marquee_forever marquee_forever marquee_forever"
android:textColor="@color/white"
android:textSize="12dp"
android:textStyle="bold"
/>