阅读量:0
要在Android TextView中实现滚动效果,可以使用ScrollView或者使用TextView的setMovementMethod方法实现滚动效果。
- 使用ScrollView:
<ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/textView" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Your text here" android:scrollbars="vertical"/> </ScrollView>
- 使用setMovementMethod方法:
TextView textView = findViewById(R.id.textView); textView.setMovementMethod(new ScrollingMovementMethod());
这样就可以在TextView中实现滚动效果了。