为TextView设置MaxHeight并加滚动条的方法
分类:Android, Java
阅读 (2,661)
Add comments
12月 182016
转载请注明原文地址:http://bcoder.com/java/the-method-to-set-maxheight-property-to-textview-and-make-it-can-scroll
为TextView设置高度为wrap_content后,TextView中的内容很多时,就会自动往下占用空间,但是设置Maxheight属性后,又不能查看全部的文字内容,这时候就需要使用TextView可滚动,下面就是设置MaxHeight并设置可滚动的代码。
1 2 |
tvNote.setMaxHeight(500); tvNote.setMovementMethod(ScrollingMovementMethod.getInstance()); |