首页 > 代码库 > TextView不用ScrollViewe也可以滚动的方法
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也可以滚动的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。