码迷,mamicode.com
首页 > 其他好文 > 详细

带滚动条TextView

时间:2014-10-23 17:42:32      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:android   style   color   ar   java   strong   sp   div   on   

本来是想做一个显示文字信息的,当文字很多时View的高度不能超过一个固定的值,当文字很少时View的高度小于那个固定值时,按View的高度显示。因为ScrollView没有maxHeight,无法满足需求,只好另找方法了。

View本身是可以设置ScrollBar,这样就不一定需要依赖ScrollView了。TextView有个属性maxLine,这样也就满足了需求了,只要设置一个TextView带ScrollBar的,然后设置maxLine就可以了。

Xml代码 bubuko.com,布布扣
  1. < span>TextView
  2. android:id="@+id/text_view"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:singleLine="false"
  6. android:maxLines="10"
  7. android:scrollbars="vertical"
  8. /<

还需要在代码了设置TextView可以滚动。

Java代码 bubuko.com,布布扣
  1. TextView textView = (TextView)findViewById(R.id.text_view);  
  2. textView.setMovementMethod(ScrollingMovementMethod.getInstance());  

带滚动条TextView

标签:android   style   color   ar   java   strong   sp   div   on   

原文地址:http://blog.csdn.net/yagamil/article/details/40400619

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!