我有一个具有以下属性的TextView
:
android:maxLines = "10"
android:scrollbars = "vertical"
通过使用以上属性,textView
显示对齐的文本:
但是当我为textView
设置运动方法时,justification
会中断:
textView.setMovementMethod(new ScrollingMovementMethod());
如何将TextView
设置为scrollable
并显示其文本justified
?
注意:我必须使用TextView
,不能使用任何其他View
或CustomView
。