android EditText 自动滚动条 显示最新内容

来源:互联网 发布:凌雪网络诈骗 编辑:程序博客网 时间:2024/05/13 07:16

 <EditText android:id="@+id/showall"
  android:layout_width="fill_parent"
  android:layout_height="260px"
  android:background="#FFFFFF"
  android:padding="5px"
  android:scrollbars="vertical"
  android:singleLine="false"
  android:maxLines="14"
  android:focusable="true"
  android:clickable="true"
  android:textColor="#000000"/>

 

 

   showAll.setSelection(showAll.getText().length() , showAll.getText().length());
   showAll.setMovementMethod(ScrollingMovementMethod.getInstance());

原创粉丝点击