0

ScrollView にラップされた TextView があります。TextView は、ワードラップしないように scrollHorizo​​ntally に設定されています。テキストが画面からはみ出し、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>       
4

3 に答える 3

4

水平にスクロールしたい場合は、使用する必要がありますHorizontalScrollView

于 2012-04-19T18:00:57.887 に答える
1

両方の方法でスクロールしたい場合、私が考えられる唯一の方法は、webview です。Java コードでテキストを html に変換するのは難しくありません。

于 2012-04-19T18:13:40.230 に答える
0

Horizo​​ntalScrollView を使用する

<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> 
于 2012-04-19T18:09:35.140 に答える