使TextView里面的文字滚动起来

要使TextView里面的内容滚动起来,那么就要配置好几个参数,

1、focusable来获取焦点。

2、ellipsize来获得滚动的方法。

3、focusableInTouchMode来获取触摸方式来获取焦点。

4、若是要无限循环滚动的话,那就要配置marqueeReeatLimit了。

1 <TextView
2         android:layout_width="match_parent"
3         android:layout_height="wrap_content"
4         android:text="大河向东流哇 ,天上的星星参北斗哇 ,(嘿嘿嘿嘿 参北斗哇)"
5         android:focusable="true"
6         android:ellipsize="marquee" 
7         android:marqueeRepeatLimit="marquee_forever"
8         android:focusableInTouchMode="true"/>
原文地址:https://www.cnblogs.com/zengsf/p/7859062.html