中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Android如何使用自定義view在指定時間內勻速畫一條直線-創(chuàng)新互聯(lián)

本篇內容介紹了“Android如何使用自定義view在指定時間內勻速畫一條直線”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

創(chuàng)新互聯(lián)公司,專注為中小企業(yè)提供官網建設、營銷型網站制作、響應式網站設計、展示型網站制作、成都網站制作等服務,幫助中小企業(yè)通過網站體現價值、有效益。幫助企業(yè)快速建站、解決網站建設與網站營銷推廣問題。

1.效果圖:

Android如何使用自定義view在指定時間內勻速畫一條直線

2.自定義view實現


public class UniformLine extends View { 
 private int x, y, nextX, nextY, incrementY, incrementX; 
 public UniformLine(Context context) { 
 super(context); 
 } 
 public UniformLine(Context context, int x, int y, int nextX, int nextY) { 
 super(context); 
 this.x = x; 
 this.y = y; 
 this.nextX = nextX; 
 this.nextY = nextY; 
 init(); 
 } 
 private void init() { 
 p = new Paint(); 
 p.setColor(Color.WHITE); 
 p.setAntiAlias(true); 
 p.setStrokeWidth(4.0f); 
 
 ValueAnimator valueAnimatorX = ValueAnimator.ofFloat(x, nextX); 
 valueAnimatorX.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 
  @Override 
  public void onAnimationUpdate(ValueAnimator animation) { 
  incrementX = Math.round((Float) animation.getAnimatedValue()); 
  invalidate(); 
  } 
 }); 
 ValueAnimator valueAnimatorY = ValueAnimator.ofInt(y, nextY); 
 valueAnimatorY.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 
  @Override 
  public void onAnimationUpdate(ValueAnimator animation) { 
  incrementY = (int) animation.getAnimatedValue(); 
  invalidate(); 
  } 
 }); 
 AnimatorSet animatorSet = new AnimatorSet(); 
 LinearInterpolator ll = new LinearInterpolator(); 
 animatorSet.setInterpolator(ll);//勻速 
 animatorSet.setDuration(2000); 
 animatorSet.playTogether(valueAnimatorX, valueAnimatorY); 
 animatorSet.start(); 
 } 
 Paint p; 
 @Override 
 protected void onDraw(Canvas canvas) { 
 super.onDraw(canvas); 
 canvas.drawLine(Util.Div(Math.round(x)), Util.Div(Math.round(y)), 
  Util.Div(Math.round(incrementX)), Util.Div(Math.round(incrementY)), p);// 斜線 
 } 
}

3.調用


uniformLine = new UniformLine(mContext, 300, 500, 600, 200); 
addView(uniformLine);

“Android如何使用自定義view在指定時間內勻速畫一條直線”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網站,小編將為大家輸出更多高質量的實用文章!

文章名稱:Android如何使用自定義view在指定時間內勻速畫一條直線-創(chuàng)新互聯(lián)
文章網址:http://www.rwnh.cn/article42/dghphc.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供網站設計公司、響應式網站做網站、動態(tài)網站、服務器托管、品牌網站制作

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都網站建設
宜州市| 正阳县| 梁山县| 商城县| 元氏县| 陆河县| 甘德县| 南雄市| 富源县| 乳山市| 西丰县| 吉木乃县| 敖汉旗| 巴中市| 濮阳市| 扶余县| 普洱| 阳朔县| 潞城市| 泾川县| 前郭尔| 淮阳县| 长岛县| 胶州市| 博乐市| 桂东县| 滦平县| 广南县| 桐庐县| 潼南县| 温泉县| 万州区| 榕江县| 鄂托克前旗| 天峻县| 通许县| 明星| 松原市| 临武县| 会东县| 神池县|