Как прокрутить текст в Textview используйте его на Android 9 - PullRequest
0 голосов
/ 31 января 2019

Я хочу прокрутить текст в Textview, он работает на всех устройствах, кроме Android 9

<TextView android:id="@+id/tv_scrolltext" android:text="* Covering 3500 Hospitals,Reaching Over 30000 Medicale Profressionals" android:singleLine="true" android:ellipsize="marquee" android:marqueeRepeatLimit ="marquee_forever" android:focusable="true" android:focusableInTouchMode="true" android:scrollHorizontally="true" android:textStyle="bold" android:textSize="16dp" android:textColor="@color/white" android:layout_width="match_parent" android:layout_height="wrap_content"/>

tv_scrolltext = (TextView) view.findViewById(R.id.customer_cnt_tv); tv_scrolltext.setSelected(true); tv_scrolltext.setMovementMethod(new ScrollingMovementMethod());

...