EditText 几种显示方式,固定行数,自适应行数
Posted 从Android出发
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EditText 几种显示方式,固定行数,自适应行数相关的知识,希望对你有一定的参考价值。
1.显示7行,超过7行自动向下补充行数
<EditText
android:id="@+id/edt_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="left|top"
android:hint="请输入作业内容"
android:inputType="textMultiLine" <!--设置可以多行-->
android:maxLength="800" <!-- 限制最大可输入字符数 -->
android:minLines="7" <!-- 初始化时显示的是7行 -->
android:padding="10dp"
android:paddingLeft="10dp"
android:textSize="14sp" />
2.自动滚动条,并显示最新内容
<EditText
android:id="@+id/edt_content"
android:layout_width="fill_parent"
android:layout_height="260px"
android:textColor="#000000"
android:padding="5px"
android:scrollbars="vertical" <!--垂直滚动条-->
android:singleLine="false" <!--多行-->
android:maxLines="14" <!--最多显示14行-->
android:focusable="false"
android:clickable="true"
android:background="#ff87CEEB"
/>
要在Java代码中设置滚动的方法( EditText mEdtContent ):
mEdtContent.setMovementMethod(ScrollingMovementMethod.getInstance());
下面是设置显示最新的内容:
mEdtContent.setSelection(chatsView.getText().length(), chatsView.getText().length());
以上是关于EditText 几种显示方式,固定行数,自适应行数的主要内容,如果未能解决你的问题,请参考以下文章