继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

TextView跑马灯效果实现总结

ziom
关注TA
已关注
手记 6
粉丝 112
获赞 202

要实现TextView的跑马灯效果比把大象装冰箱还容易,只需要两步。


第一步:自定义一个类继承TextView
public class MarqueeTextView extends TextView {

    public MarqueeTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public MarqueeTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MarqueeTextView(Context context) {
        super(context);
    }

    public boolean isFocused() {
        return true;
    };

}

代码一目了然,没啥好说的。

第二步:在布局文件中使用自定义的TextView
<com.imooc.widget.MarqueeTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:text="@string/longStr"
        android:textSize="20sp" />
打开App,阅读手记
3人推荐
发表评论
随时随地看视频慕课网APP