在布局文件中设置TextView属性(Android:scrollbars):
<TextView android:id="@+id/text_log" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="18sp" android:singleLine="false" android:maxLines="20" android:scrollbars="vertical"/>
在代码中关联该TextView:
TextView textLog = (TextView)this.findViewById(R.id.text_log); textLog.setMovementMethod(ScrollingMovementMethod.getInstance());
时间: 2024-10-14 09:38:15