Android 自定义View 简单的圆形Progress

1.效果

.

2效果分析

底部是一个圆形(空心圆)
上面是一个弧形(根据角度来确定弧度的大小)
里面是一个TextView

3.代码实现

3.1 创建自定义CMProgressView
public class CMProgressView extends View {

public CMProgressView(Context context) {
    this(context,null);
}

public CMProgressView(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs,0);
}

public CMProgressView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
}
3.2创建自定义属性

在values目录下的attrs.xml文件中创建自定义属性

  <declare-styleable name="CMProgressView">
    <attr name="cmProgressOuterColor" format="color"></attr>
    <attr name="cmProgressInnerColor" format="color"></attr>
    <attr name="cmProgressBorderWidth" format="dimension"></attr>
    <attr name="cmProgressTextSize" format="dimension"></attr>
    <attr name="cmProgressTextColor" format="color"></attr>
</declare-styleable>
3.3 在布局文件中使用
          <com.test.cmviewdemo.CMProgressView
            android:id="@+id/main_cmProgress_cmProgressView"
            android:layout_margin="10dp"
            android:padding="10dp"
            app:cmProgressBorderWidth="10dp"
            app:cmProgressInnerColor="@color/colorAccent"
            app:cmProgressOuterColor="@color/colorPrimary"
            app:cmProgressTextColor="@color/colorAccent"
            app:cmProgressTextSize="20sp"
            android:layout_width="100dp"
            android:layout_height="100dp" />
3.4 获取自定义属性
      //获取自定义属性
    TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CMProgressView);
    cmProgressOuterColr = typedArray.getColor(R.styleable.CMProgressView_cmProgressOuterColor, cmProgressOuterColr);
    cmProgressInnerColor = typedArray.getColor(R.styleable.CMProgressView_cmProgressInnerColor, cmProgressInnerColor);
    cmProgressBorderWidth = typedArray.getDimensionPixelOffset(R.styleable.CMProgressView_cmProgressBorderWidth,cmProgressBorderWidth);
    cmProgressTextColor = typedArray.getColor(R.styleable.CMProgressView_cmProgressTextColor,cmProgressTextColor);
    cmProgressTextSize = typedArray.getDimensionPixelSize(R.styleable.CMProgressView_cmProgressTextSize,cmProgressTextSize);
    typedArray.recycle();
3.5 创建画笔
 private Paint cmProgressOuterPaint,cmProgressInnerPaint,cmProgressTextPaint;

    //初始化画笔
    cmProgressOuterPaint = new Paint();
    cmProgressOuterPaint.setAntiAlias(true);
    cmProgressOuterPaint.setColor(cmProgressOuterColr);
    cmProgressOuterPaint.setStrokeWidth(cmProgressBorderWidth);
    cmProgressOuterPaint.setStyle(Paint.Style.STROKE);
    cmProgressOuterPaint.setStrokeCap(Paint.Cap.ROUND);

    cmProgressInnerPaint = new Paint();
    cmProgressInnerPaint.setAntiAlias(true);
    cmProgressInnerPaint.setColor(cmProgressInnerColor);
    cmProgressInnerPaint.setStrokeWidth(cmProgressBorderWidth);
    cmProgressInnerPaint.setStyle(Paint.Style.STROKE);
    cmProgressInnerPaint.setStrokeCap(Paint.Cap.ROUND);

    cmProgressTextPaint = new Paint();
    cmProgressTextPaint.setAntiAlias(true);
    cmProgressTextPaint.setTextSize(cmProgressTextSize);
    cmProgressTextPaint.setColor(cmProgressTextColor);
3.6 从写onMeasure()方法
  @Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    //从新测量 宽高,如果是AT_MOST 模式,则赋默认值
    int widthMode = MeasureSpec.getMode(widthMeasureSpec);
    int heightMode = MeasureSpec.getMode(heightMeasureSpec);

    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = MeasureSpec.getSize(heightMeasureSpec);

    if(MeasureSpec.AT_MOST == widthMode){
        width = 40;
    }

    if(MeasureSpec.AT_MOST == heightMode){
        height = 40;
    }

    width = (height > width ? width : height);
    height = (height > width ? width : height);

    //设置宽高
    setMeasuredDimension(width,height);

}
3.7 重写onDray()方法
  @Override
protected void onDraw(Canvas canvas) {
    //1.画内圆弧
    canvas.drawCircle(getWidth()/2,getWidth()/2,getWidth()/2-cmProgressBorderWidth/2,cmProgressOuterPaint);

    //2.画外圆弧
    RectF rectF = new RectF(0+cmProgressBorderWidth/2,0+cmProgressBorderWidth/2,getWidth()-cmProgressBorderWidth/2,getHeight()-cmProgressBorderWidth/2);
    float precent = (float)cmProgressCurrent/cmProgressMax;
    canvas.drawArc(rectF,0,precent*360,false,cmProgressInnerPaint);

    //3.画进度文字
    String text = String.valueOf((int)(precent*100))+"%";
    //找基线
    Rect textBounds = new Rect();
    cmProgressTextPaint.getTextBounds(text,0,text.length(),textBounds);

    int dx = getWidth()/2 - textBounds.width()/2;
    int dy = (textBounds.bottom - textBounds.top)/2 - textBounds.bottom;
    int baseLine = getHeight()/2 + dy;
    canvas.drawText(text,dx,baseLine,cmProgressTextPaint);
}
3.8 提供方法,供外部调用者使用
public synchronized void setProgressMas(int max){
    if(0 > max){
        throw new IllegalArgumentException("最大值需大于0");
    }
    this.cmProgressMax = max;
}

public synchronized void setProgressCurrent(int current){
    if( cmProgressMax < current){
        throw new IllegalArgumentException("当前进度需小于最大值");
    }
    this.cmProgressCurrent = current;
    invalidate();
}
3.9 外部调用
  private void initProgressView() {
    Button main_progress_bt = findViewById(R.id.main_cmProgress_start_bt);
    final CMProgressView main_progress_cmProgressView = findViewById(R.id.main_cmProgress_cmProgressView);
    main_progress_cmProgressView.setProgressMas(150);
    main_progress_bt.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            ValueAnimator valueAnimator = ObjectAnimator.ofFloat(0, 90);
            valueAnimator.setDuration(2000);
            valueAnimator.setInterpolator(new DecelerateInterpolator());
            valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                @Override
                public void onAnimationUpdate(ValueAnimator animation) {
                    float animatedValue = (float) animation.getAnimatedValue();
                    main_progress_cmProgressView.setProgressCurrent((int) animatedValue);
                }
            });
            valueAnimator.start();
        }
    });
}

Github Demo

https://github.com/hualianrensheng/CMViewDemo

引用

https://www.jianshu.com/p/b272528165a2

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

推荐阅读更多精彩内容

  • 【Android 自定义View】 [TOC] 自定义View基础 接触到一个类,你不太了解他,如果贸然翻阅源码只...
    Rtia阅读 3,936评论 1 14
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,451评论 25 707
  • 整个十月 半月红,半月黄 我挂在树枝上惊叹 我是红叶 是我的垂暮染红了夕阳 我临终的妆扮,只为来世更好的遇见 与你...
    流沙l阅读 482评论 2 4
  • 找到自己的“习惯模式”,弄清楚习惯的运作原理,过上自律又充实的生活。 今天我们给大家分享三个内容,分别是:找出习惯...
    飞壶阅读 260评论 0 0
  • 对她的爱,就像你母亲对你一样,她和你永远不明白他们。
    砚冰心坚阅读 82评论 0 0