8

我想垂直向下和向上滚动文本,以防出现在 textview 中的文本比空间长。但是,我测试的以下方法不起作用。

1 -tv1.setMovementMethod(new ScrollingMovementMethod()); 此外,在使用此方法时,对方法的调用onFling()停止工作。

2 -<ScrollView>在布局 XML 中使用。此外,使用此方法时,对onFling()方法的调用停止工作。

<ScrollView
android:id="@+id/SCROLLER_ID"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fillViewport="true">

    <TextView
    android:id="@+id/TEXT_STATUS_ID"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1.0"/>

</ScrollView>

我在布局 XML 中的 TextView 如下。

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="2.26"
    android:background="@drawable/green"
    android:gravity="center"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />
4

3 回答 3

16

您不能在. View_ 因此,在普通布局中使用您的简单并为其添加属性。TextViewListViewScrollViewTextViewandroid:scrollbars

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:lines="3"
    android:scrollbars="vertical"
    android:scrollbarStyle="insideOverlay"
    android:fadeScrollbars="true"
    android:fadingEdge="vertical" />

Activity侧面,您必须编写如下内容:

tv1.setMovementMethod(new ScrollingMovementMethod());

(基本上与您在第一点描述的相同)

于 2012-12-02T20:10:45.870 回答
3

您可以尝试如下:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:fillViewport="true" >

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:orientation="vertical" >

    <TextView
        android:id="@+id/TEXT_STATUS_ID"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1.0"/>
</LinearLayout>
</ScrollView>
于 2012-12-02T19:52:19.070 回答
1
<ScrollView
android:id="@+id/SCROLLER_ID"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

    <TextView
    android:id="@+id/TEXT_STATUS_ID"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"

</ScrollView>
于 2012-12-02T19:47:57.937 回答