标签:
1、首先xml文件TextView配置
<TextView
android:id="@+id/tv"
android:layout_width="500dp"
android:layout_height="fill_parent"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:layout_marginBottom="20dp"
android:textSize="22sp"
android:textColor="#000000"
android:scrollbars="vertical"
android:background="#C0C0C0"/>
2、然后代码设置
tv = (TextView)this.findViewById(R.id.tv);
tv.setMovementMethod(ScrollingMovementMethod.getInstance())
标签:
原文地址:http://www.cnblogs.com/win24/p/4568834.html