文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android编程使用自定义View实现水波进度效果示例

2023-05-31 14:00

关注

本文实例讲述了Android编程使用自定义View实现水波进度效果。分享给大家供大家参考,具体如下:

首先上效果图:

Android编程使用自定义View实现水波进度效果示例

简介:

自动适应屏幕大小;
2.水波自动横向滚动;
3.各种绘制参数可通过修改常量进行控制。

代码不多,注释也比较详细,全部贴上:

(一)自定义组件:

public class WaterWaveView extends View {  //边框宽度  private int STROKE_WIDTH;  //组件的宽,高  private int width, height;    private float max, progress;    private Paint progressPaint;  //波纹振幅与半径之比。(建议设置:<0.1)  private static final float A = 0.05f;  //绘制文字的画笔  private Paint textPaint;  //绘制边框的画笔  private Paint circlePaint;    private int centerX, centerY;  //内圆所在的矩形  private RectF circleRectF;  public WaterWaveView(Context context) {    super(context);    init();  }  public WaterWaveView(Context context, AttributeSet attrs) {    super(context, attrs);    init();  }  public WaterWaveView(Context context, AttributeSet attrs, int defStyleAttr) {    super(context, attrs, defStyleAttr);    init();  }  //初始化  private void init() {    progressPaint = new Paint();    progressPaint.setColor(Color.parseColor("#77cccc88"));    progressPaint.setAntiAlias(true);    textPaint = new Paint();    textPaint.setColor(Color.WHITE);    textPaint.setAntiAlias(true);    circlePaint = new Paint();    circlePaint.setStyle(Paint.Style.STROKE);    circlePaint.setAntiAlias(true);    circlePaint.setColor(Color.parseColor("#33333333"));    autoRefresh();  }  @Override  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {    super.onMeasure(widthMeasureSpec, heightMeasureSpec);    if (width == 0 || height == 0) {      width = getWidth();      height = getHeight();      //计算圆弧半径和圆心点      int circleRadius = Math.min(width, height) >> 1;      STROKE_WIDTH = circleRadius / 10;      circlePaint.setStrokeWidth(STROKE_WIDTH);      centerX = width / 2;      centerY = height / 2;      VALID_RADIUS = circleRadius - STROKE_WIDTH;      RADIANS_PER_X = (float) (Math.PI / VALID_RADIUS);      circleRectF = new RectF(centerX - VALID_RADIUS, centerY - VALID_RADIUS,          centerX + VALID_RADIUS, centerY + VALID_RADIUS);    }  }  private Rect textBounds = new Rect();  //x方向偏移量  private int xOffset;  @Override  protected void onDraw(Canvas canvas) {    super.onDraw(canvas);    //绘制圆形边框    canvas.drawCircle(centerX, centerY, VALID_RADIUS + (STROKE_WIDTH >> 1), circlePaint);    //绘制水波曲线    canvas.drawPath(getWavePath(xOffset), progressPaint);    //绘制文字    textPaint.setTextSize(VALID_RADIUS >> 1);    String text1 = String.valueOf(progress);    //测量文字长度    float w1 = textPaint.measureText(text1);    //测量文字高度    textPaint.getTextBounds("8", 0, 1, textBounds);    float h2 = textBounds.height();    float extraW = textPaint.measureText("8") / 3;    canvas.drawText(text1, centerX - w1 / 2 - extraW, centerY + h2 / 2, textPaint);    textPaint.setTextSize(VALID_RADIUS / 6);    textPaint.getTextBounds("M", 0, 1, textBounds);    float h3 = textBounds.height();    canvas.drawText("M", centerX + w1 / 2 - extraW + 5, centerY - (h2 / 2 - h3), textPaint);    String text3 = "共" + String.valueOf(max) + "M";    float w3 = textPaint.measureText(text3, 0, text3.length());    textPaint.getTextBounds("M", 0, 1, textBounds);    float h4 = textBounds.height();    canvas.drawText(text3, centerX - w3 / 2, centerY + (VALID_RADIUS >> 1) + h4 / 2, textPaint);    String text4 = "流量剩余";    float w4 = textPaint.measureText(text4, 0, text4.length());    textPaint.getTextBounds(text4, 0, text4.length(), textBounds);    float h5 = textBounds.height();    canvas.drawText(text4, centerX - w4 / 2, centerY - (VALID_RADIUS >> 1) + h5 / 2, textPaint);  }  //绘制水波的路径  private Path wavePath;  //每一个像素对应的弧度数  private float RADIANS_PER_X;  //去除边框后的半径(即内圆半径)  private int VALID_RADIUS;    private Path getWavePath(int xOffset) {    if (wavePath == null) {      wavePath = new Path();    } else {      wavePath.reset();    }    float[] startPoint = new float[2]; //波浪线起点    float[] endPoint = new float[2]; //波浪线终点    for (int i = 0; i <= VALID_RADIUS * 2; i += 2) {      float x = centerX - VALID_RADIUS + i;      float y = (float) (centerY + VALID_RADIUS * (1.0f + A) * 2 * (0.5f - progress / max)          + VALID_RADIUS * A * Math.sin((xOffset + i) * RADIANS_PER_X));      //只计算内圆内部的点,边框上的忽略      if (calDistance(x, y, centerX, centerY) > VALID_RADIUS) {        if (x < centerX) {          continue; //左边框,继续循环        } else {          break; //右边框,结束循环        }      }      //第1个点      if (wavePath.isEmpty()) {        startPoint[0] = x;        startPoint[1] = y;        wavePath.moveTo(x, y);      } else {        wavePath.lineTo(x, y);      }      endPoint[0] = x;      endPoint[1] = y;    }    if (wavePath.isEmpty()) {      if (progress / max >= 0.5f) {        //满格        wavePath.moveTo(centerX, centerY - VALID_RADIUS);        wavePath.addCircle(centerX, centerY, VALID_RADIUS, Path.Direction.CW);      } else {        //空格        return wavePath;      }    } else {      //添加圆弧部分      float startDegree = calDegreeByPosition(startPoint[0], startPoint[1]); //0~180      float endDegree = calDegreeByPosition(endPoint[0], endPoint[1]); //180~360      wavePath.arcTo(circleRectF, endDegree - 360, startDegree - (endDegree - 360));    }    return wavePath;  }  private float calDistance(float x1, float y1, float x2, float y2) {    return (float) Math.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));  }  //根据当前位置,计算出进度条已经转过的角度。  private float calDegreeByPosition(float currentX, float currentY) {    float a1 = (float) (Math.atan(1.0f * (centerX - currentX) / (currentY - centerY)) / Math.PI * 180);    if (currentY < centerY) {      a1 += 180;    } else if (currentY > centerY && currentX > centerX) {      a1 += 360;    }    return a1 + 90;  }  public void setMax(int max) {    this.max = max;    invalidate();  }  //直接设置进度值(同步)  public void setProgressSync(float progress) {    this.progress = progress;    invalidate();  }    private void autoRefresh() {    new Thread(new Runnable() {      @Override      public void run() {        while (!detached) {          xOffset += (VALID_RADIUS >> 4);          SystemClock.sleep(100);          postInvalidate();        }      }    }).start();  }  //标记View是否已经销毁  private boolean detached = false;  @Override  protected void onDetachedFromWindow() {    super.onDetachedFromWindow();    detached = true;  }}

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯