2

我想滚动在 TextView 中查看的结果,这是我的 xml:

<scroll>
<TextView
android:id="@+id/ris"
android:layout_width="wrap_content"
android:layout_height="229dp"
android:layout_weight="0.96"
android:textAppearance="?android:attr/textAppearanceMedium" />
</scroll>

但应用程序崩溃。

4

4 回答 4

1

利用

<ScrollView> your View "</ScrollView">

并且必须只有一个子ScrollView。

于 2012-05-11T13:29:54.453 回答
1

将此添加到 TextView 的 XML 文件中

 android:scrollHorizontally="true"
 android:scrollVertically="true"
于 2012-05-11T13:32:57.803 回答
1

在您的 中添加以下作为属性TextView

android:maxLines = "1"
android:scrollbars = "vertical"

然后,一旦您实例化了您的TextView,请添加以下行:

mTextView.setMovementMethod(new ScrollingMovementMethod());
于 2012-05-11T13:33:05.730 回答
0
<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="19dp"
    android:layout_marginTop="24dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world"
            tools:context=".Tester" />
    </LinearLayout>
</ScrollView>
于 2012-10-27T18:01:25.810 回答