要實現TextView的滾動,可以使用ScrollView或者使用TextView自身的屬性來實現。
使用ScrollView:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="要顯示的文本內容" />
</ScrollView>
使用TextView的屬性:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="要顯示的文本內容"
android:maxLines="10"
android:scrollbars="vertical" />
在Java代碼中,還需要為TextView設置滾動條的監聽器:
TextView textView = findViewById(R.id.textView);
textView.setMovementMethod(new ScrollingMovementMethod());
以上兩種方法都可以實現TextView的滾動效果,可以根據具體的需求選擇適合的方法。