要在Android TextView滾動時顯示滾動條,可以通過在布局文件中的TextView元素中設置android:scrollbars屬性來實現。具體步驟如下:
示例代碼如下:
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a long text that will be scrolled."
android:scrollbars="vertical"/>
示例代碼如下:
TextView textView = findViewById(R.id.myTextView);
textView.setMovementMethod(new ScrollingMovementMethod());
這樣,當TextView中的文本超出TextView的顯示范圍時,就會顯示垂直滾動條供用戶滾動查看文本內容。