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>