I have a TextView
in my app that is defined with marquee_forever
:
<TextView
android:id="@+id/networkNameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/wefiPrimaryColor"
android:textSize="15sp"
android:textStyle="bold" />
It works perfectly on Xiaomi Android 8.1 but on a Galaxy Note Android 10 it doesn't work.
Instead I get android:ellipsize
.
Is there a new parameter required or is this a problem with Android 10 or Galaxy Note?