Android 自定义进度条ColorfulProgressbar,原理简单、效果还行

效果图:


demo效果演示
demo效果演示

演示Demo

demo下载: https://github.com/Ccapton/Android-ColorfulProgressBar/blob/master/ColorfulProgressBarDemo_1_0_3.apk

特性

与原生Progress相比,感觉更漂亮一点,可以显示进度值,背景凹凸感明显,进度条效果更加立体。

原理说明

额,挺简单的。不过感觉我的做法有点复杂了,我先自定义了一个View,专门作为进度条的显示图层,如下所示


将其布局在高度不超过20dp的ColorfulProgressBar父布局中,设置Y方向的偏移量,然后动画循环改变Y坐标,实现斜条滚动的动画效果,当你调用setProgress方法时,则改变其在父布局的X坐标实现进度显示的功能,进度文字同样原理添加到了父布局中。

项目地址

https://github.com/Ccapton/Android-ColorfulProgressBar
我的Github:
https://github.com/Ccapton

相关代码

ColorfulProgressbar.java

 package com.capton.colorfulprogressbar;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.util.Log;
import android.view.Gravity;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.view.animation.TranslateAnimation;
import android.widget.TextView;
/**
 * Created by capton on 2017/8/10.
 */

public class ColorfulProgressbar extends ViewGroup {

    public static final String STYLE_NORMAL="normal";  //正常单色样式
    public static final String STYLE_COLORFUL="colorful"; //双色样式
    public   String style="colorful";

    private ColorfulView colofulView;     //双色View
    private TextView progressView;     // 第二进度条
    private TextView maskView;         // 季度条白色渐变图层
    private TextView percentView;       //文字显示进度层
    private Paint progressPaint=new Paint();  //颜色一画笔
    private Paint progressPaint2=new Paint();  //颜色二画笔
    private Paint backgroundPaint=new Paint();  //背景画笔

    private  int maxHeight;  //ColorfulProgressbar高度最大值
    private  int mHeight;     //ColorfulProgressbar高度
    private  int mWidth;      //ColorfulProgressbar宽度

    private  long progress;     //进度值
    private  long secondProgress;   //第二进度值
    private  long maxProgress=100;  //默然最大进度100
    private  int backgroundColor=getResources().getColor(R.color.progressBg);    //背景颜色
    private  int secondProgressColor=getResources().getColor(R.color.secondProgressColor);  //第二进度条颜色
    private  int progressColor=getResources().getColor(R.color.colorAccent);    //进度条颜色一
    private  int progressColor2=getResources().getColor(R.color.ltcolorAccent);  //进度条颜色二
    private  int percentColor=Color.DKGRAY;          //进度文字的颜色,默认暗灰色
    private  int percentShadeColor=Color.WHITE;   //进度文字的阴影颜色,默认白色

    private TranslateAnimation translateAnimation; //双色进度条的动画
    private boolean animationOn=true;      //动画开启的标志位
    private boolean animationCancle;         //动画取消的标志位

    private boolean showPercent=true; // 是否显示进度文字的标志位
    private boolean setBackgroudColor; // 是否改变背景颜色的标志位

    public ColorfulProgressbar(Context context) {
        this(context,null);
    }
    public ColorfulProgressbar(Context context, AttributeSet attrs) {
        this(context, attrs,0);
    }
    public ColorfulProgressbar(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        setWillNotDraw(false);  //自定义ViewGroup,默认不调用onDraw方法,而这里有很多步骤需要在ondraw中操作,所以调用setWillNotDraw(false)
        mHeight=DisplayUtil.dip2px(context,4); //默认进度条高度为4dp
        getParameter(context,attrs);
    }

    /**
     * 从xml中获取各个属性
     * @param context
     * @param attrs
     */
    private void getParameter(Context context, AttributeSet attrs){
        if(attrs!=null) {
            TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.ColorfulProgressbar);
            style = ta.getString(R.styleable.ColorfulProgressbar_style);
            if (!STYLE_NORMAL.equals(style) && !STYLE_COLORFUL.equals(style)) {
                style = STYLE_COLORFUL;  //如果没有在xml中显示设置style,默认使用双色进度条
            }
            progress = ta.getInteger(R.styleable.ColorfulProgressbar_progress, (int)progress);
            secondProgress = ta.getInteger(R.styleable.ColorfulProgressbar_secondProgress,(int)secondProgress);
            maxProgress = ta.getInteger(R.styleable.ColorfulProgressbar_max, (int) maxProgress);
            backgroundColor = ta.getColor(R.styleable.ColorfulProgressbar_backgroundColor, backgroundColor);
            progressColor = ta.getColor(R.styleable.ColorfulProgressbar_progressColor1, progressColor);
            progressColor2 = ta.getColor(R.styleable.ColorfulProgressbar_progressColor2, progressColor2);
            ta.recycle();
            partition2= (float)this.progress/maxProgress; //进度条百分比
            partition= (float)this.secondProgress/maxProgress; //第二进度条百分比
        }
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int widthSize=MeasureSpec.getSize(widthMeasureSpec);
        int widthMode=MeasureSpec.getMode(widthMeasureSpec);
        int heightSize=MeasureSpec.getSize(heightMeasureSpec);
        int heightMode=MeasureSpec.getMode(heightMeasureSpec);

        widthSize=widthMode==MeasureSpec.EXACTLY?widthSize:DisplayUtil.dip2px(getContext(),200);
        heightSize=heightMode==MeasureSpec.EXACTLY?heightSize:DisplayUtil.dip2px(getContext(),4);

        /*
        * 当你设置高度大于20dp时,强制高度变为20dp,太高了不美观。
        * */
        maxHeight=DisplayUtil.dip2px(getContext(),20);
        if(mHeight>maxHeight) {
            mHeight = maxHeight;
        }
        /*
        * 设置高度
        * */
        if(mHeight>0){
            heightSize=mHeight;
        }

        /*
        * 在高度小于10dp时,强制不能使用文字显示进度,因为高度实在是太小了,在这个高度下字体看不清楚,放在进度条外又不美观,只好折中设计了。
        * */
        if(mHeight<DisplayUtil.dip2px(getContext(),10)){
            showPercent=false;
        }

        /*
        * 设置宽度
        * */
        if(mWidth>0){
            widthSize=mWidth;
        }
        setMeasuredDimension(widthSize,heightSize); //确定主视图宽高

    }

    boolean once;
    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {

         if(!once) {
             progressPaint.setColor(progressColor);
             progressPaint2.setColor(progressColor2);

             progressPaint.setAntiAlias(true);
             progressPaint2.setAntiAlias(true);

             progressView = new TextView(getContext());
             progressView.setWidth(getMeasuredWidth());
             progressView.setHeight(getMeasuredHeight());
             progressView.setBackgroundColor(secondProgressColor);

             switch (style) {
                 case STYLE_COLORFUL:
                     colofulView = new ColorfulView(getContext(), getMeasuredWidth(), progressPaint, progressPaint2);
                     break;
                 case STYLE_NORMAL:
                     colofulView = new ColorfulView(getContext(), getMeasuredWidth(), progressPaint, progressPaint);
                     break;
             }

             percentView = new TextView(getContext());
             percentView.setText((int)((float)partition2*100)+"%");
             percentView.setTextSize(DisplayUtil.px2sp(getContext(), (float) (getMeasuredHeight()*0.8)));
             percentView.setGravity(Gravity.CENTER);
             percentView.setShadowLayer(2,1,2,percentShadeColor);
              percentView.setTextColor(percentColor);
              percentView.measure(0,0);
             int textWidth = percentView.getMeasuredHeight()*2;
             int textHeight = percentView.getMeasuredHeight();

             maskView = new TextView(getContext());
             maskView.setWidth(getMeasuredWidth());
             maskView.setHeight(getMeasuredHeight() * 2 / 3);
             maskView.setBackgroundResource(R.drawable.progress_mask);

             /*
             * 依次添加第二进度条,双色进度条(第一进度条),白色渐变层,百分比文字显示层等四个子View
             * */
             addView(progressView);
             addView(colofulView);
             addView(maskView);
             addView(percentView);

             getChildAt(0).layout(0, 0, getMeasuredWidth(), getMeasuredHeight()); //布局第二进度条位置

             int ChildHeight = getMeasuredWidth();
             getChildAt(1).layout(0, -ChildHeight + getMeasuredHeight(), getMeasuredWidth(), getMeasuredWidth()); //布局双色进度条
             /*
             * 根据标识位,为双色进度条设置位移动画(无限向上移动,视觉上达到斜条向右移动的效果)
             * */
             if (animationOn) {
                 translateAnimation = new TranslateAnimation(0, 0, 0, ChildHeight - getMeasuredHeight());
                 translateAnimation.setDuration((long) (8000 * (float) getMeasuredWidth() / DisplayUtil.getScreenWidthPx(getContext())));
                 translateAnimation.setRepeatCount(-1);
                 translateAnimation.setInterpolator(new LinearInterpolator());
                 getChildAt(1).setAnimation(translateAnimation);
                 translateAnimation.start();
             }

             getChildAt(2).layout(0, 0, getMeasuredWidth(), getMeasuredHeight() * 2 / 3); //布局白色渐变层

             getChildAt(3).layout(0, 0, textWidth,textHeight); //布局百分比文字显示层
             /*
             * 根据标志位,确定是否显示百分比文字显示层。
             * */
             if(showPercent){
                 getChildAt(3).setVisibility(VISIBLE);
             }else {
                 getChildAt(3).setVisibility(GONE);
             }

             /*
             *  设置默认背景图,你当然也可以使用纯色的资源。这里我用了一个黑色透明渐变的背景,呈现一个由阴影效果的凹槽
             * */
             setBackgroundResource(R.drawable.background);
             once=true;
         }
    }


    public void showPercentText(boolean showPercent){
        this.showPercent=showPercent;
    }

    public int getSecondProgressColor() {
        return secondProgressColor;
    }

    public void setSecondProgressColor(int secondProgressColor) {
        this.secondProgressColor = secondProgressColor;
    }
    public void setSecondProgressColorRes(int secondProgressColorRes) {
        this.secondProgressColor =  getResources().getColor(secondProgressColorRes);
    }

    public int getPercentColor() {
        return percentColor;
    }

    public void setPercentColorRes(int percentColorRes) {
        this.percentColor = getResources().getColor(percentColorRes);
    }

    public int getPercentShadeColor() {
        return percentShadeColor;
    }

    public void setPercentShadeColor(int percentShadeColor) {
        this.percentShadeColor = percentShadeColor;
    }
    public void setPercentShadeColorRes(int percentShadeColorRes) {
        this.percentShadeColor = getResources().getColor(percentShadeColorRes);
    }

    public String getStyle() {
        return style;
    }

    public void setStyle(String style) {
        this.style = style;
    }

    public int getProgressColor() {
        return progressColor;
    }

    public void setProgressColor(int progressColor) {
        this.progressColor = progressColor;
    }
    public void setProgressColorRes(int progressColorRes) {
        this.progressColor = getResources().getColor(progressColorRes);
    }

    public int getProgressColor2() {
        return progressColor2;
    }

    public void setProgressColor2(int progressColor2) {
        this.progressColor2 = progressColor2;
    }
    public void setProgressColor2Res(int progressColor2Res) {
        this.progressColor2 = getResources().getColor(progressColor2Res);
    }

    public void setAnimation(boolean animationOn){
       this.animationOn=animationOn;
   }

    public long getSecondProgress() {
        return secondProgress;
    }
    private float partition;
    public void setSecondProgress(long secondProgress) {
        this.secondProgress = secondProgress;
        partition= (float)this.secondProgress/maxProgress;
    }

    public int getBackgroundColor() {
        return backgroundColor;
    }

    public void setBackgroundColor(int backgroundColor) {
        this.backgroundColor = backgroundColor;
        setBackgroudColor=true;
    }

    public void setBackgroundColorRes(int backgroundColorRes) {
        this.backgroundColor = getResources().getColor(backgroundColorRes);
        setBackgroudColor=true;
    }

    public void setHeight(int height){
        mHeight=height;
    }
    public void setWidth(int width){
        mWidth=width;
    }

    public void setMaxProgress(long progress){
        maxProgress=progress;
    }

    public long getMaxProgress(){
       return maxProgress;
    }

    private float partition2;
    public void setProgress(long progress){
        this.progress=progress;
        partition2= (float)this.progress/maxProgress;
    }

    public long getProgress(){
        return this.progress;
    }


    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
            if (getChildAt(0) != null) {
                int moveX = getMeasuredWidth() - (int) (partition * getMeasuredWidth());
                getChildAt(0).setX(-moveX);
            }
            if (getChildAt(1) != null) {
                int moveX = getMeasuredWidth() - (int) (partition2 * getMeasuredWidth());
                getChildAt(1).setX(-moveX);
            }

            if (getChildAt(2) != null) {
                int moveX = getMeasuredWidth() - (int) (partition2 * getMeasuredWidth());
                getChildAt(2).setX(-moveX);
            }
            if (getChildAt(3) != null) {

                if(getChildAt(1).getX()+getMeasuredWidth()>getChildAt(3).getMeasuredHeight()*2) {
                    getChildAt(3).setX(getChildAt(1).getX()+getMeasuredWidth()-getChildAt(3).getMeasuredHeight()*2);
                }
                percentView.setText((int) ((float) partition2 * 100) + "%");

                 /*
                 * 根据标志位,确定是否显示百分比文字显示层。
                 * */
                if(showPercent){
                    getChildAt(3).setVisibility(VISIBLE);
                }else {
                    getChildAt(3).setVisibility(GONE);
                }
            }

            if (!animationOn) {
                if (translateAnimation != null) {
                    translateAnimation.cancel();
                    animationCancle = true;
                }
            } else {
                if (animationCancle) {
                    Log.w("onDraw", "translateAnimation  animationCancle");
                    translateAnimation.reset();
                    getChildAt(1).setAnimation(translateAnimation);
                    translateAnimation.startNow();
                    animationCancle = false;
                }
            }
            if(setBackgroudColor) {
                backgroundPaint.setAntiAlias(true);
                backgroundPaint.setColor(backgroundColor);
                canvas.drawRect(0, 0, getMeasuredWidth(), getMeasuredHeight(), backgroundPaint);
            }
    }
}

也是挺简单的,欢迎大家来踩呀!

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

推荐阅读更多精彩内容

  • 吊炸天!74款APP完整源码! [超级干货]Android UI效果开源库集合—你们要的支付宝RecyclerVi...
    木木00阅读 20,680评论 0 160
  • 自己总结的Android开源项目及库。 github排名https://github.com/trending,g...
    passiontim阅读 2,483评论 1 26
  • 今日听了《蔡康永的说话之道2》 首先要学会提问和自嘲自黑,说话有主题有结论,苦衷事后说,公事事无巨细但私下聊天多保...
    千小姐阅读 195评论 0 1
  • 还有15天就可以回哈尔滨了,北漂生活正式结束,就要开始深漂了,人生太艰难了。要不停的漂泊。每次不禁感叹自己的平凡与...
    佳盈阅读 79评论 0 0
  • 作家毕淑敏说:“书不是羽毛,却会使女人飞翔;书不是万能的,却会使女人千变万化。”不得不承认,读书,改变了我这个农村...
    zrongcn阅读 648评论 4 4