Inside my RecycleView Im trying to marquee all the texts that doesn't fit in one line, however due to lack of focus inside RecycleView, I can only set one Textview to work, is there any way to do it?
<TextView
android:layout_toLeftOf="@+id/imageLabel"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:freezesText="true"
android:maxLines="1"
android:id="@+id/bankName"
android:paddingRight="5dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:textSize="28sp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
I know if I add
android:singleLine="true"
it would make all the Textviews marquee inside the recyclerview, but since its depercated I want to avoid using it