Android 文字跑马灯控件,支持设置滚动速度,文字颜色,大小等,可设置任意长度文本及任意控件宽度

这篇博客主要介绍了如何在Android项目中实现一个自定义的文字跑马灯控件,该控件允许开发者动态设置滚动速度、文字颜色和字体大小。与Android内置的TextView不同,即使文本长度小于控件宽度,该控件也能实现滚动效果。博主分享了实现这一功能的代码,以供日后参考和优化。
摘要由CSDN通过智能技术生成

因项目需求,需实现文字跑马灯效果,且能动态设置文本的滚动速度、字体颜色、字体大小等,Android自带的TextView也能实现跑马灯效果,但有个问题,文字内容长度必须大于控件宽度才会滚动,且滚动速度不可动态设置;

So,就参考了相关文档,自己实现了以上需求,使用方法与TextView差不多,在此以作记录,方便日后复习、优化。上代码:


package com.xxx.test;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.text.TextUtils;
import android.util.AttributeSet;
import android.view.View;

/**
 * Created by xRoon on 2016/2/27.
 */
public class MarqueeTextView extends View {
    private final float DEF_TEXT_SIZE = 25.0F;//The default text size
    private float mSpeed = 3.0F; //The default text scroll speed
    private boolean isScroll = true; //The default set as auto scroll
    private Context mContext;
    private Paint mPaint;
    private String mText;//This is to display the content
    private float mTextSize;//This is text size
    private int mTextColor; //This is text color

    private float mCoordinateX;//Draw the starting point of the X coordinate
    private float mCoordinateY;//Draw the starting point of the Y coordinate
    
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值