Answers for "moving text in textview android"

0

moving text in textview android

<TextView
        android:id="@+id/YOURID"
        android:layout_width="15dp"
        android:layout_height="wrap_content"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:singleLine="true"
        />
Posted by: Guest on October-04-2020

Code answers related to "moving text in textview android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language