posted at 2015-07-21 17:43:26 +0000
在使用TextView的过程中,有时候会遇到文字过多,显示不全的问题。
下面的几行代码,可以给TextView加上滚动条。
首先,打开layout文件,在TextView标记中添加2个属性:
android:singleLine="false" //取消单行
android:scrollbars="vertical" //设置垂直滚动条
利用TextView对象设置样式
TextView textview=(TextView)findViewById(R.id.textview);
textview.setMovementMethod(ScrollingMovementMethod.getInstance());
© kanch
→ zl AT kanchz DOT com
last updated on 2022-07-27 01:57:54 +0000