我有一个包含在ScrollView中的TextView。 TextView设置为scrollHorizontally以使其不是wordwrap。文本正在屏幕上运行,ScrollView的垂直滚动条显示,但不是水平。如何显示水平滚动条?
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textViewContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollHorizontally="true"/>
</ScrollView>
答案 0 :(得分:4)
如果您想要横向滚动,则应使用HorizontalScrollView
答案 1 :(得分:1)
如果你想双向滚动,我认为可能的唯一方法就是在webview中。在java代码中将文本转换为html并不太难。
答案 2 :(得分:0)
使用HorizontalScrollView
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textViewContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollHorizontally="true"/>
</HorizontalScrollView>