我有以下Textview:
<TextView
android:id="@+id/detailsText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Long text Long text Long text Long text Long text Long text "
android:textAppearance="?android:attr/textAppearanceLarge"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true" />
文本自动从右向左滚动(这是我正在寻找的)但在配置更改后,文本从头开始重新滚动。我曾尝试使用android:configChanges="orientation|keyboardHidden|screenSize"
并在我的代码中处理配置更改,但这不起作用。我也发现不再建议使用这种技术,而是尝试使用Fragments,但没有任何工作。我还试图找出scrollHorizontally正在修改哪个值来进行滚动,这样我就可以尝试保存并恢复它,但我从来没有找到它(例如,textview.getScrollX()始终保持为0)。
我还注意到,当我使用textview.setVisibility(View.GONE); and textview.setVisibility(View.VISIBLE);
方法时,也会发生这种“滚动重启”。
感谢您的帮助。