您好,登錄后才能下訂單哦!
本文實例為大家分享了Android自定義跑馬燈文字的具體代碼,供大家參考,具體內容如下
Android 跑馬燈效果文字:
效果圖(真實動畫很流暢,這個轉gif有問題,感覺有點卡):
代碼:
/** * Created by wuguangliang on 2018/12/21 * * 跑馬燈效果文字 */ public class MarqueeHorizontalTextView extends AppCompatTextView { private float textLength = 0f; private float drawTextX = 0f;// 文本的橫坐標 public boolean isStarting = false;// 是否開始滾動 private Paint paint = null; private String text = ""; private long waitTime = 1000; //開始時等待的時間 private int scrollTile = 2; //文字的滾動速度 private int baseline; public MarqueeHorizontalTextView(Context context) { super(context); initView(context); } public MarqueeHorizontalTextView(Context context, AttributeSet attrs) { super(context, attrs); initView(context); } public MarqueeHorizontalTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); initView(context); } private void initView(Context context) { setMaxWidth(context.getResources().getDisplayMetrics().widthPixels / 2); //因為需求需要所以設置了最大寬度,如果不需要此功能可以刪除掉 paint = getPaint(); paint.setColor(getTextColors().getColorForState(getDrawableState(), 0)); text = getText().toString(); if (TextUtils.isEmpty(text)) { return; } textLength = paint.measureText(text); isStarting = true; } @Override public void setTextColor(int color) { super.setTextColor(color); paint.setColor(color); start(); } @Override public void setText(CharSequence text, BufferType type) { super.setText(text, type); this.text = text.toString(); this.textLength = getPaint().measureText(text.toString()); drawTextX = 0; start(); } public void start() { isStarting = true; invalidate(); } public void stop() { isStarting = false; invalidate(); } @Override public void onDraw(Canvas canvas) { final Paint.FontMetricsInt fontMetrics = paint.getFontMetricsInt(); baseline = (canvas.getHeight() - fontMetrics.bottom - fontMetrics.top) / 2; if (textLength <= canvas.getWidth()) { canvas.drawText(text, 0, baseline, paint); return; } canvas.drawText(text, -drawTextX, baseline, paint); if (!isStarting) { return; } if (drawTextX == 0) { postDelayed(() -> { drawTextX = 1; isStarting = true; invalidate(); }, waitTime); isStarting = false; return; } drawTextX += scrollTile; //判斷是否滾動結束 if (drawTextX > textLength) { drawTextX = -canvas.getWidth(); } invalidate(); } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。