轉自:http://blog.csdn.net/yoyoysc/article/details/12514419android
原本是想作一個顯示文字信息的,當文字不少時View的高度不能超過一個固定的值,當文字不多時View的高度小於那個固定值時,按View的高度顯示。由於ScrollView沒有maxHeight,沒法知足需求,只好另找方法了。spa
View自己是能夠設置ScrollBar,這樣就不必定須要依賴ScrollView了。TextView有個屬性maxLine,這樣也就知足了需求了,只要設置一個TextView帶ScrollBar的,而後設置maxLine就能夠了。.net
<TextView blog
android:id="@+id/text_view" get
android:layout_width="fill_parent" it
android:layout_height="wrap_content" scroll
android:singleLine="false" 方法
android:maxLines="10" im
android:scrollbars="vertical"
/>
還須要在代碼了設置TextView能夠滾動。
TextView textView = (TextView)findViewById(R.id.text_view);
textView.setMovementMethod(ScrollingMovementMethod.getInstance());
大功告成。