当另一个文本发生更改时,TextView选取框会重置。好吧,如果选取框文本包含日文,则不会重置。但如果它只包含英文,那么每当另一个textview的文本发生变化时它就会被重置。
这是xml代码。
<app.farhanfarooqui.vocaplayer.ScrollingTextView
android:freezesText="true"
android:id="@+id/songTitle"
android:layout_alignParentLeft="true"
android:layout_width="500dp"
android:layout_height="wrap_content"
android:layout_marginLeft="14dp"
android:layout_marginRight="20dp"
android:layout_marginTop="60dp"
android:layout_toLeftOf="@+id/skipBackward"
android:focusable="true"
android:focusableInTouchMode="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:text="Song's Title"
android:textColor="#ccbbb4"
android:textSize="16sp" />
此问题仅发生在低于lollipop
的Android版本上运行的设备上