android TextView不用ScrollViewe也可以滚动的方法
作者:
这篇文章主要介绍了android TextView不用ScrollViewe也可以滚动的方法,很简单实用的代码,大家参考使用吧
代码
复制代码 代码如下:
TextView textview = (TextView) findViewById(R.id.text);
/** *
* 只有调用了该方法,TextView才能不依赖于ScrollView而实现滚动的效果。
* 要在XML中设置TextView的textcolor,否则,当TextView被触摸时,会灰掉。
*/
textview.setMovementMethod(ScrollingMovementMethod.getInstance());
xml文件
复制代码 代码如下:
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:scrollbars="vertical"
android:maxLines="12"
android:textColor="@color/white"
android:text="@string/str"
android:id="@+id/text"
></TextView>
您可能感兴趣的文章:
- android TextView设置中文字体加粗实现方法
- Android TextView设置背景色与边框的方法详解
- Android编程开发之TextView文字显示和修改方法(附TextView属性介绍)
- Android TextView字体颜色设置方法小结
- android实现上下滚动的TextView
- android TextView多行文本(超过3行)使用ellipsize属性无效问题的解决方法
- Android设置TextView显示指定个数字符,超过部分显示...(省略号)的方法
- Android中TextView显示圆圈背景或设置圆角的方法
- Android中TextView实现分段显示不同颜色的字符串
- Android 妙用TextView实现左边文字,右边图片