Welcome 微信登录
编程资源 图片资源库 蚂蚁家优选 PDF转换器

首页 / 操作系统 / Linux / Android入门:向TextView添加滚动条

Android默认TextView如果在一屏幕显示不下的话,是不会有滚动条的,解决方法是在<TextView>外面添加<ScrollView>标签;
  1. <ScrollView  
  2.     android:layout_width="fill_parent"  
  3.     android:layout_height="wrap_content" >  
  4.   
  5.     <TextView  
  6.         android:layout_width="fill_parent"  
  7.         android:layout_height="wrap_content"  
  8.         android:textSize="50dp"  
  9.         android:text="a a a a a a a a a a a a a a " />  
  10. </ScrollView>  
显示效果如下: