在布局文件中设置TextView属性(Android:scrollbars):
在代码中关联该TextView:
TextView textLog = (TextView)this.findViewById(R.id.text_log); textLog.setMovementMethod(ScrollingMovementMethod.getInstance());
本文共 249 字,大约阅读时间需要 1 分钟。
在布局文件中设置TextView属性(Android:scrollbars):
在代码中关联该TextView:
TextView textLog = (TextView)this.findViewById(R.id.text_log); textLog.setMovementMethod(ScrollingMovementMethod.getInstance());
转载于:https://blog.51cto.com/xjhznick/1589345