Android 自定义View之咖啡杯动画

效果

CoffeeView
CoffeeView

大概思路

  • 自定义view,直接继承view
  • 复写onSizeChanged()方法,在此计算杯垫,杯子,烟雾效果的path
  • 在onDraw()方法中,描绘杯垫,杯子
  • 处理烟雾动画效果

画杯子

这里需要画两部分内容,第一部分是杯子,第二部分是杯耳(提手的地方)

我们可以使用addRoundRect来描绘圆角矩形,并且可指定每个圆角的半径即圆角的程度

/**
 * Add a closed round-rectangle contour to the path. Each corner receives
 * two radius values [X, Y]. The corners are ordered top-left, top-right,
 * bottom-right, bottom-left
 *
 * @param rect The bounds of a round-rectangle to add to the path
 * @param radii Array of 8 values, 4 pairs of [X,Y] radii
 * @param dir  The direction to wind the round-rectangle's contour
 */
public void addRoundRect(RectF rect, float[] radii, Direction dir) {
    if (rect == null) {
        throw new NullPointerException("need rect parameter");
    }
    addRoundRect(rect.left, rect.top, rect.right, rect.bottom, radii, dir);
}

以下代码注释:

//计算view的中心点坐标
mCenterX = w / 2;
mCenterY = h / 2;

//杯子的宽,为view的宽度的2/3
float cupWidth  = w * 2 / 3f;

//杯子的高,为view的高度3/8
float cupHeight = (h / 2) * 3 / 4f;

//计算出杯子的中心点坐标
float cupCenterX = mCenterX;
float cupCenterY = mCenterY + cupHeight / 2;

//计算杯子矩形的左上右上的圆角半径
float cupTopRoundRadius = Math.min(cupWidth, cupHeight) / 20f;

//计算杯子矩形的左下右下的圆角半径
float cupBottomRoundRadius = cupTopRoundRadius * 10;

//重置杯子path
mCupPath.reset();

//添加杯子(杯身)轨迹
mCupPath.addRoundRect(new RectF(cupCenterX - cupWidth / 2, cupCenterY - cupHeight / 2 - cupHeight / 10, cupCenterX + cupWidth / 2, cupCenterY + cupHeight / 2), new float[]{cupTopRoundRadius, cupTopRoundRadius, cupTopRoundRadius, cupTopRoundRadius,              cupBottomRoundRadius, cupBottomRoundRadius, cupBottomRoundRadius, cupBottomRoundRadius}, Path.Direction.CW);

//计算杯耳宽度
float cupEarWidth  = (w - cupWidth) * 3 / 4f;
//计算杯耳高度
float cupEarHeight = cupHeight / 3;

//计算杯耳的中心点坐标
float cupEarCenterX = mCenterX + cupWidth / 2;
float cupEarCenterY = mCenterY + cupHeight / 2;

//计算杯耳的圆角半径
float cupEarRoundRadius = Math.min(cupEarWidth, cupEarHeight) / 2f;

//设置杯耳画笔的描边宽度
mCupEarPaint.setStrokeWidth(Math.min(cupEarWidth, cupEarHeight) / 3f);

//重置杯耳path
mCupEarPath.reset();

//添加杯耳轨迹
mCupEarPath.addRoundRect(new RectF(cupEarCenterX - cupEarWidth / 2, cupEarCenterY - cupEarHeight / 2 - cupHeight / 10, cupEarCenterX + cupEarWidth / 2,
                cupEarCenterY + cupEarHeight / 2),
        new float[]{cupEarRoundRadius, cupEarRoundRadius, cupEarRoundRadius, cupEarRoundRadius,
                cupEarRoundRadius, cupEarRoundRadius, cupEarRoundRadius, cupEarRoundRadius}, Path.Direction.CW);

在onDraw方法中

canvas.drawPath(mCupEarPath, mCupEarPaint);
canvas.drawPath(mCupPath, mCupPaint);

画杯垫

首先计算杯垫path轨迹

//计算杯垫宽度
float coasterWidth = cupWidth;
//计算杯垫高度
float coasterHeight = (h / 2 - cupHeight) * 1 / 3f;

//计算杯垫中心点坐标
float coasterCenterX = mCenterX;
float coasterCenterY = mCenterY + cupHeight + (h / 2 - cupHeight) / 2f;

//计算杯垫圆角半径
float coasterRoundRadius = Math.min(coasterWidth, coasterHeight) / 2f;

//重置杯垫path
mCoasterPath.reset();

//添加杯垫轨迹
mCoasterPath.addRoundRect(new RectF(coasterCenterX - coasterWidth / 2, coasterCenterY - coasterHeight / 2,
                coasterCenterX + coasterWidth / 2, coasterCenterY + coasterHeight / 2),
        coasterRoundRadius, coasterRoundRadius, Path.Direction.CW);

在onDraw方法中

canvas.drawPath(mCoasterPath, mCoasterPaint);

画烟雾

烟雾原理

  • 根据贝塞尔曲线添加波浪轨迹
  • 根据LinearGradient实现颜色渐变效果

每条烟雾大概如下效果


CoffeeView

当移动至烟雾底部的时候,重新将其移动至头部,这样循环动画,就会显示无线的滚动效果

代码注释如下:

//计算烟雾的宽度
float vaporsStrokeWidth = cupWidth / 15f;

//计算烟雾相隔距离大小
float vaporsGapWidth = (cupWidth - VAPOR_COUNT * vaporsStrokeWidth) / 4f;
mVaporsHeight   = cupHeight * 4 / 5f;

//设置烟雾画笔描边大小
mVaporPaint.setStrokeWidth(vaporsStrokeWidth);
float startX, startY, stopX, stopY;

//设置渐变效果
LinearGradient linearGradient = new LinearGradient(mCenterX, mCenterY, mCenterX, mCenterY - mVaporsHeight,
        new int[]{mVaporColor, Color.TRANSPARENT},
        null, Shader.TileMode.CLAMP);
        
//烟雾画笔增加渐变效果的渲染器
mVaporPaint.setShader(linearGradient);

//增加每条烟雾的path的贝塞尔波浪
for (int i = 0; i < VAPOR_COUNT; i++) {
    mVaporsPath[i].reset();

    startX = (mCenterX - cupWidth / 2) + vaporsStrokeWidth / 2 + i * vaporsStrokeWidth + (i + 1) * vaporsGapWidth;
    startY = mCenterY + mVaporsHeight;

    stopX = startX;
    stopY = mCenterY - mVaporsHeight;


    mVaporsPath[i].moveTo(startX, startY);
    mVaporsPath[i].quadTo(startX - vaporsGapWidth / 2, startY - mVaporsHeight / 4,
            startX, startY - mVaporsHeight / 2);

    mVaporsPath[i].quadTo(startX + vaporsGapWidth / 2, startY - mVaporsHeight * 3 / 4,
            startX, mCenterY);

    mVaporsPath[i].quadTo(startX - vaporsGapWidth / 2, mCenterY - mVaporsHeight / 4,
            startX, mCenterY - mVaporsHeight / 2);

    mVaporsPath[i].quadTo(startX + vaporsGapWidth / 2, mCenterY - mVaporsHeight * 3 / 4,
            stopX, stopY);

    //add twice the bezier curve
    mVaporsPath[i].quadTo(startX - vaporsGapWidth / 2, stopY - mVaporsHeight / 4,
            startX, stopY - mVaporsHeight / 2);

    mVaporsPath[i].quadTo(startX + vaporsGapWidth / 2, stopY - mVaporsHeight * 3 / 4,
            startX, stopY - mVaporsHeight);

    mVaporsPath[i].quadTo(startX - vaporsGapWidth / 2, stopY - mVaporsHeight - mVaporsHeight / 4,
            startX, stopY - mVaporsHeight - mVaporsHeight / 2);

    mVaporsPath[i].quadTo(startX + vaporsGapWidth / 2, stopY - mVaporsHeight - mVaporsHeight * 3 / 4,
            stopX, stopY - 2 * mVaporsHeight);
}

烟雾动画处理:
每条烟雾都有一个path记录其轨迹,利用path的transform方法可移动path

/**
 * Transform the points in this path by matrix, and write the answer
 * into dst. If dst is null, then the the original path is modified.
 *
 * @param matrix The matrix to apply to the path
 * @param dst    The transformed path is written here. If dst is null,
 *               then the the original path is modified
 */
public void transform(Matrix matrix, Path dst) {
    long dstNative = 0;
    if (dst != null) {
        dst.isSimplePath = false;
        dstNative = dst.mNativePath;
    }
    nTransform(mNativePath, matrix.native_instance, dstNative);
}
ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, -vaporHeight);
    final int finalI = i;
    valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
        @Override
        public void onAnimationUpdate(ValueAnimator valueAnimator) {
            mAnimatorValues[finalI] = (float) valueAnimator.getAnimatedValue();
            invalidate();
        }
    });

    valueAnimator.setDuration(1000);
    valueAnimator.setInterpolator(new LinearInterpolator());
    valueAnimator.setRepeatCount(ValueAnimator.INFINITE);
    valueAnimator.setRepeatMode(ValueAnimator.RESTART);
    mValueAnimators.add(valueAnimator);

在onDraw方法中,描绘烟雾

private void drawVapors(Canvas canvas){
for (int i = 0; i < VAPOR_COUNT; i++){
    mCalculateMatrix.reset();
    mCalculatePath.reset();

    float animatedValue = mAnimatorValues[i];
    mCalculateMatrix.postTranslate(0, animatedValue);
    mVaporsPath[i].transform(mCalculateMatrix, mCalculatePath);

    canvas.drawPath(mCalculatePath, mVaporPaint);
}
}

我这里设置了每条烟雾的移动速度是一样的,你们可以下载源码来修改,看看不同的移动速度的效果

Github

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容