我是靠谱客的博主 鲤鱼衬衫,最近开发中收集的这篇文章主要介绍自定义View画一个圆从左下角匀速移到右下角渐变,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class Viewwww extends View implements View.OnClickListener{
private Bean bean;
private Paint paint;
public Viewwww(Context context) {
super(context);
}
public Viewwww(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
int red = 200;
int green = 200;
int blue = 200;
public void setRed(int red) {
this.red = red;
}
private void init() {
bean = new Bean();
paint = new Paint();
paint.setColor(Color.argb(255,red,green,blue));
setOnClickListener(this);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint.setColor(Color.argb(255,red,green,blue));
canvas.drawCircle(bean.getPostionX()+100,bean.getPostionY()+100,bean.getRadius(),paint);
}
@Override
public void onClick(View v) {
startAnimation();
}
private void startAnimation() {
AnimatorSet animatorSet = new AnimatorSet();
ObjectAnimator postionX = ObjectAnimator.ofFloat(bean, "postionX", 100, 500);
postionX.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
invalidate();
}
});
ObjectAnimator postionY = ObjectAnimator.ofFloat(bean, "postionY", 100, 1000);
ObjectAnimator objectAnimator = ObjectAnimator.ofInt(this, "red", 0, 255);
animatorSet.play(postionX).with(postionY).with(objectAnimator);
animatorSet.setDuration(5000);
animatorSet.start();
}
}

最后

以上就是鲤鱼衬衫为你收集整理的自定义View画一个圆从左下角匀速移到右下角渐变的全部内容,希望文章能够帮你解决自定义View画一个圆从左下角匀速移到右下角渐变所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部