我有一个包裹在 ScrollView 中的 TextView。TextView 设置为 scrollHorizontally 以使其不是自动换行。文本在屏幕外运行,并且 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>