安卓笔记-可以滚动的TextView

本来是想做一个显示文字信息的,当文字很多时View的高度不能超过一个固定的值,当文字很少时View的高度小于那个固定值时,按View的高度显示。因为ScrollView没有maxHeight,无法满足需求,只好另找方法了。 
View本身是可以设置ScrollBar,这样就不一定需要依赖ScrollView了。TextView有个属性maxLine,这样也就满足了需求了,只要设置一个TextView带ScrollBar的,然后设置maxLine就可以了。 

<TextView 

    Android:id="@+id/text_view" 

    android:layout_width="fill_parent" 

    android:layout_height="wrap_content" 

    android:singleLine="false" 

    android:maxLines="10" 

    android:scrollbars="vertical" 

    /> 

还需要在代码了设置TextView可以滚动。 
TextView textView = (TextView)findViewById(R.id.text_view);  
textView.setMovementMethod(ScrollingMovementMethod.getInstance());


原文地址:https://www.cnblogs.com/muyuge/p/6333595.html