I have a TextView wrapped in a ScrollView. The TextView is set to scrollHorizontally to make it not wordwrap. The text is running off the screen and the ScrollView’s vertical scrollbar is showing up, but not the horzontal. How do I get the horizontal scrollbar to show up?
<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>
If you want to scroll both ways, the only way I could think possible would be in a webview. Not too hard to convert your text to html in the java code.