要在Android TextView中實現滾動效果,可以使用ScrollView或者使用TextView的setMovementMethod方法實現滾動效果。
<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>
TextView textView = findViewById(R.id.textView);
textView.setMovementMethod(new ScrollingMovementMethod());
這樣就可以在TextView中實現滾動效果了。