TextView 文字滚动 跑马灯效果

      对于长文本的显示,除了用省略号之外我们还可以让它滚动显示,这样的效果也叫走马灯效果 !


       我们实现这个效果,也要用到上面android:ellipsize的属性,还有android:marqueeRepeatLimit,和android:focusable属性:

<TextView android:id="@+id/txtInfo" 
    android:text="这里是测试内容,内容要长容要长要长长长长长长长长长长长长长长长长"
    android:ellipsize="marquee" 
    android:marqueeRepeatLimit="marquee_forever"
    android:focusable="true" 
    android:focusableInTouchMode="true"  
    android:singleLine="true"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" />

如果有的朋友实现这个走马灯效果时发现它跑不起来,记得把android:focusableInTouchMode事件也写上就行了。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章