Android中TextView实现文字跑马灯效果(滚动轮播)

效果图:

Android中TextView实现文字跑马灯效果(滚动轮播)_第1张图片



给TextView设置一些属性即可实现跑马灯的效果


<TextView
    android:id="@+id/show_tv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:singleLine="true"
    android:textSize="20dp"/>


完整Demo代码下载:http://pan.baidu.com/s/1boTwtx9









你可能感兴趣的:(Android)