服务器之家

服务器之家 > 正文

Android使用自定义view在指定时间内匀速画一条直线的实例代码

时间:2022-02-20 15:38     来源/作者:yanan

本文讲述了Android使用自定义view在指定时间内匀速画一条直线的实例代码。分享给大家供大家参考,具体如下:

1.效果图:

Android使用自定义view在指定时间内匀速画一条直线的实例代码

2.自定义view实现

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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.调用

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

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:https://blog.csdn.net/meetings/article/details/78853114

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部