android ScrollView 控制行数
Posted 竹山一叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android ScrollView 控制行数相关的知识,希望对你有一定的参考价值。
利用ScrollView 来控制textView 显示的行数
<ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="vertical" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" <span style="white-space:pre"> </span>android:maxLines="4" //设置最大显示行数 4行 android:scrollbars="vertical"//设置 滚动方向 android:singleLine="false"//设置不为单行 android:textColor="@color/white" android:textSize="16sp" /> </LinearLayout> </ScrollView>
这个控件的目的是 最大显示四行,超过四行的有滚动条,滚动显示所有内容
还有一步,在 初始化 该textView的时候,
title = (TextView) findViewById(R.id.title); title.setMovementMethod(ScrollingMovementMethod.getInstance());这样就大功告成了!!
以上是关于android ScrollView 控制行数的主要内容,如果未能解决你的问题,请参考以下文章
android ScrollView+GridView GridView不滚动