TextView不用ScrollViewe也可以滚动的方法
Posted Sunnor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView不用ScrollViewe也可以滚动的方法相关的知识,希望对你有一定的参考价值。
转自:http://www.jb51.net/article/43377.htm
android TextView不用ScrollViewe也可以滚动的方法。
TextView textview = (TextView) findViewById(R.id.text);
/** *
* 只有调用了该方法,TextView才能不依赖于ScrollView而实现滚动的效果。
* 要在XML中设置TextView的textcolor,否则,当TextView被触摸时,会灰掉。
*/
textview.setMovementMethod(ScrollingMovementMethod.getInstance());
xml:
1 <TextView 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="wrap_content" 5 android:textSize="18sp" 6 android:scrollbars="vertical" 7 android:maxLines="12" 8 android:textColor="@color/white" 9 android:text="@string/str" 10 android:id="@+id/text" 11 ></TextView>
以上是关于TextView不用ScrollViewe也可以滚动的方法的主要内容,如果未能解决你的问题,请参考以下文章
ListBox有个滚动条,ScrollViewer 有个滚动条
如果要求是 Textview 应该显示最多 4 行的完整文本,那么如何设置 textview 的高度,然后它应该在 swift 3 中滚动?