为TextView添加文字滚动功能和滚动条

在这里mark一下老是忘记,老了。。。。

[codesyntax lang=”java”]

TextView tv=((TextView)super.findViewById(R.id.tv));
tv.setMovementMethod(ScrollingMovementMethod.getInstance());// 设置TextView 文本可以滚动

[/codesyntax]

通过以上文字就能滚动了

[codesyntax lang=”xml”]

<TextView
android:id="@+id/tv"
android:singleLine="false"
android:scrollbars="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

[/codesyntax]

布局管理器中要指定下滚动的方向

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注