我想垂直向下和向上滚动文本,以防出现在 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" />