Android TextView 跑马灯滚动效果

android:lines=“1″
android:focusable=“true”
android:focusableInTouchMode=“true”
android:scrollHorizontally=“true”
android:marqueeRepeatLimit=“marquee_forever”

android:ellipsize=“marquee”

android:singleLine="true"


注意:TextView必须获取焦点才能滚动,所以有时候滚动不起来,要加属性:

android:focusable=“true”
android:focusableInTouchMode=“true”

你可能感兴趣的:(android,textview,滚动,跑马灯)