Android自定義View之圓形進(jìn)度條源碼

版權(quán)聲明:本文為博主原創(chuàng)文章,未經(jīng)博主允許不得轉(zhuǎn)載运悲。
教程原文:Android自定義View——從零開(kāi)始實(shí)現(xiàn)圓形進(jìn)度條

大家要是看到有錯(cuò)誤的地方或者有啥好的建議龄减,歡迎留言評(píng)論

源碼已上傳至github,要獲取最新源碼可點(diǎn)此傳送

CircleBarView.java

public class CircleBarView extends View {
    private Paint bgPaint;//繪制背景圓弧的畫(huà)筆
    private Paint progressPaint;//繪制圓弧的畫(huà)筆
    private RectF mRectF;//繪制圓弧的矩形區(qū)域
    private CircleBarAnim anim;
    private float progressNum;//可以更新的進(jìn)度條數(shù)值
    private float maxNum;//進(jìn)度條最大值
    private int progressColor;//進(jìn)度條圓弧顏色
    private int bgColor;//背景圓弧顏色
    private float startAngle;//背景圓弧的起始角度
    private float sweepAngle;//背景圓弧掃過(guò)的角度
    private float barWidth;//圓弧進(jìn)度條寬度
    private int defaultSize;//自定義View默認(rèn)的寬高
    private float progressSweepAngle;//進(jìn)度條圓弧掃過(guò)的角度
    private TextView textView;
    private OnAnimationListener onAnimationListener;
    public CircleBarView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context,attrs);
    }
    private void init(Context context,AttributeSet attrs){
        TypedArray typedArray = context.obtainStyledAttributes(attrs,R.styleable.CircleBarView);
        progressColor = typedArray.getColor(R.styleable.CircleBarView_progress_color,Color.GREEN);
        bgColor = typedArray.getColor(R.styleable.CircleBarView_bg_color,Color.GRAY);
        startAngle = typedArray.getFloat(R.styleable.CircleBarView_start_angle,0);
        sweepAngle = typedArray.getFloat(R.styleable.CircleBarView_sweep_angle,360);
        barWidth = typedArray.getDimension(R.styleable.CircleBarView_bar_width,DpOrPxUtils.dip2px(context,10));
        typedArray.recycle();//typedArray用完之后需要回收班眯,防止內(nèi)存泄漏

        progressNum = 0;
        maxNum = 100;
        defaultSize = DpOrPxUtils.dip2px(context,100);
        mRectF = new RectF();
        anim = new CircleBarAnim();

        progressPaint = new Paint();
        progressPaint.setStyle(Paint.Style.STROKE);//只描邊希停,不填充
        progressPaint.setColor(progressColor);
        progressPaint.setAntiAlias(true);//設(shè)置抗鋸齒
        progressPaint.setStrokeWidth(barWidth);
        progressPaint.setStrokeCap(Paint.Cap.ROUND);//設(shè)置畫(huà)筆為圓角

        bgPaint = new Paint();
        bgPaint.setStyle(Paint.Style.STROKE);//只描邊,不填充
        bgPaint.setColor(bgColor);
        bgPaint.setAntiAlias(true);//設(shè)置抗鋸齒
        bgPaint.setStrokeWidth(barWidth);
        bgPaint.setStrokeCap(Paint.Cap.ROUND);
    }
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int height = measureSize(defaultSize, heightMeasureSpec);
        int width = measureSize(defaultSize, widthMeasureSpec);
        int min = Math.min(width, height);// 獲取View最短邊的長(zhǎng)度
        setMeasuredDimension(min, min);// 強(qiáng)制改View為以最短邊為長(zhǎng)度的正方形
        if(min >= barWidth*2){
            mRectF.set(barWidth/2,barWidth/2,min-barWidth/2,min-barWidth/2);
        }
    }
    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        canvas.drawArc(mRectF,startAngle,sweepAngle,false,bgPaint);
        canvas.drawArc(mRectF,startAngle,progressSweepAngle,false, progressPaint);
    }
    public class CircleBarAnim extends Animation{
        public CircleBarAnim(){
        }
        @Override
        protected void applyTransformation(float interpolatedTime, Transformation t) {
            super.applyTransformation(interpolatedTime, t);
            progressSweepAngle = interpolatedTime * sweepAngle * progressNum / maxNum;
            if(textView !=null){
                textView.setText(onAnimationListener.howToChangeText(interpolatedTime, progressNum,maxNum));
            }
            onAnimationListener.howTiChangeProgressColor(progressPaint,interpolatedTime, progressNum,maxNum);
            postInvalidate();
        }
    }
    private int measureSize(int defaultSize,int measureSpec) {
        int result = defaultSize;
        int specMode = View.MeasureSpec.getMode(measureSpec);
        int specSize = View.MeasureSpec.getSize(measureSpec);
        if (specMode == View.MeasureSpec.EXACTLY) {
            result = specSize;
        } else if (specMode == View.MeasureSpec.AT_MOST) {
            result = Math.min(result, specSize);
        }
        return result;
    }
    /**
     * 設(shè)置進(jìn)度條最大值
     * @param maxNum
     */
    public void setMaxNum(float maxNum) {
        this.maxNum = maxNum;
    }
    /**
     * 設(shè)置進(jìn)度條數(shù)值
     * @param progressNum 進(jìn)度條數(shù)值
     * @param time 動(dòng)畫(huà)持續(xù)時(shí)間
     */
    public void setProgressNum(float progressNum, int time) {
        this.progressNum = progressNum;
        anim.setDuration(time);
        this.startAnimation(anim);
    }
    /**
     * 設(shè)置顯示文字的TextView
     * @param textView
     */
    public void setTextView(TextView textView) {
        this.textView = textView;
    }
    public interface OnAnimationListener {
        /**
         * 如何處理要顯示的文字內(nèi)容
         * @param interpolatedTime 從0漸變成1,到1時(shí)結(jié)束動(dòng)畫(huà)
         * @param updateNum 進(jìn)度條數(shù)值
         * @param maxNum 進(jìn)度條最大值
         * @return
         */
        String howToChangeText(float interpolatedTime, float updateNum, float maxNum);
        /**
         * 如何處理進(jìn)度條的顏色
         * @param paint 進(jìn)度條畫(huà)筆
         * @param interpolatedTime 從0漸變成1,到1時(shí)結(jié)束動(dòng)畫(huà)
         * @param updateNum 進(jìn)度條數(shù)值
         * @param maxNum 進(jìn)度條最大值
         */
        void howTiChangeProgressColor(Paint paint, float interpolatedTime, float updateNum, float maxNum);
    }
    public void setOnAnimationListener(OnAnimationListener onAnimationListener) {
        this.onAnimationListener = onAnimationListener;
    }
}

DpOrPxUtils.java

public class DpOrPxUtils {
    public static int dip2px(Context context, float dpValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dpValue * scale + 0.5f);
    }
    public static int px2dip(Context context, float pxValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (pxValue / scale + 0.5f);
    }
}

ShowActivity.java

public class ShowActivity extends AppCompatActivity {
    private Button btnRestart;
    private CircleBarView circleBarView;
    private TextView textProgress;
    private CircleBarView circleBarView2;
    private TextView textProgress2;
    private int num;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_show);
        textProgress = (TextView) findViewById(R.id.text_progress);
        circleBarView = (CircleBarView)findViewById(R.id.circle_view);
        circleBarView.setTextView(textProgress);
        circleBarView.setOnAnimationListener(new CircleBarView.OnAnimationListener() {
            @Override
            public String howToChangeText(float interpolatedTime, float updateNum, float maxNum) {
                DecimalFormat decimalFormat=new DecimalFormat("0.00");
                String s = decimalFormat.format(interpolatedTime * updateNum / maxNum * 100)+"%";
                return s;
            }
            @Override
            public void howTiChangeProgressColor(Paint paint, float interpolatedTime, float updateNum, float maxNum) {
                LinearGradientUtil linearGradientUtil = new LinearGradientUtil(Color.YELLOW,Color.RED);
                paint.setColor(linearGradientUtil.getColor(interpolatedTime));
            }
        });
        circleBarView.setProgressNum(80,1000);
        
        textProgress2 = (TextView) findViewById(R.id.text_progress2);
        circleBarView2 = (CircleBarView)findViewById(R.id.circle_view2);
        circleBarView2.setTextView(textProgress2);
        circleBarView2.setOnAnimationListener(new CircleBarView.OnAnimationListener() {
            @Override
            public String howToChangeText(float interpolatedTime, float updateNum, float maxNum) {
                DecimalFormat decimalFormat=new DecimalFormat("0.00");
                String s = decimalFormat.format(interpolatedTime * updateNum / maxNum * 100)+"%";
                return s;
            }
            @Override
            public void howTiChangeProgressColor(Paint paint, float interpolatedTime, float updateNum, float maxNum) {
            }
        });
        num = 0;
        setProgressNumInThread();
        
        btnRestart = (Button) findViewById(R.id.btn_restart);
        btnRestart.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                circleBarView.setProgressNum(80,1000);
                setProgressNumInThread();
            }
        });
    }
    private Handler handler=new Handler(){
        @Override
        public void handleMessage(Message msg) {
            super.handleMessage(msg);
            switch (msg.what){
                case 0:
                    circleBarView2.setProgressNum(num,0);
                    break;
            }
        }
    };
    private void setProgressNumInThread(){
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    for (int i=1;i<=100;i++){
                        num = i;
                        handler.obtainMessage(0).sendToTarget();
                        Thread.sleep(50);
                    }
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }).start();
    }
}

activity_show.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.anlia.bauzviews.activity.ShowActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <Button
            android:id="@+id/btn_restart"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="重置"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp"/>
        <RelativeLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="10dp">
            <com.anlia.progressbar.CircleBarView
                android:id="@+id/circle_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center_horizontal"
                app:start_angle="135"
                app:sweep_angle="270"
                app:progress_color="@color/red"
                app:bg_color="@color/gray_light"
                app:bar_width="8dp"/>
            <TextView
                android:id="@+id/text_progress"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true"/>
        </RelativeLayout>
        <TextView
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:text="單次設(shè)置進(jìn)度條數(shù)值鳖敷,動(dòng)畫(huà)時(shí)間為1秒"
            android:layout_marginTop="5dp"/>
        <RelativeLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="15dp">
            <com.anlia.progressbar.CircleBarView
                android:id="@+id/circle_view2"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center_horizontal"
                app:start_angle="270"
                app:sweep_angle="360"
                app:progress_color="@color/green_light"
                app:bg_color="@color/gray_light"
                app:bar_width="8dp"/>
            <TextView
                android:id="@+id/text_progress2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true"/>
        </RelativeLayout>
        <TextView
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:text="模擬多線(xiàn)程下載脖苏,進(jìn)度條數(shù)值緩慢遞增,動(dòng)畫(huà)時(shí)間設(shè)為0"
            android:layout_marginTop="5dp"/>
    </LinearLayout>
</RelativeLayout>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末定踱,一起剝皮案震驚了整個(gè)濱河市棍潘,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌崖媚,老刑警劉巖亦歉,帶你破解...
    沈念sama閱讀 216,496評(píng)論 6 501
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異畅哑,居然都是意外死亡肴楷,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,407評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén)荠呐,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)赛蔫,“玉大人砂客,你說(shuō)我怎么就攤上這事『腔郑” “怎么了鞠值?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,632評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)渗钉。 經(jīng)常有香客問(wèn)我彤恶,道長(zhǎng),這世上最難降的妖魔是什么鳄橘? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,180評(píng)論 1 292
  • 正文 為了忘掉前任声离,我火速辦了婚禮,結(jié)果婚禮上瘫怜,老公的妹妹穿的比我還像新娘术徊。我一直安慰自己,他們只是感情好鲸湃,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,198評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布弧关。 她就那樣靜靜地躺著,像睡著了一般唤锉。 火紅的嫁衣襯著肌膚如雪世囊。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,165評(píng)論 1 299
  • 那天窿祥,我揣著相機(jī)與錄音株憾,去河邊找鬼。 笑死晒衩,一個(gè)胖子當(dāng)著我的面吹牛嗤瞎,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播听系,決...
    沈念sama閱讀 40,052評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼贝奇,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了靠胜?” 一聲冷哼從身側(cè)響起掉瞳,我...
    開(kāi)封第一講書(shū)人閱讀 38,910評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎浪漠,沒(méi)想到半個(gè)月后陕习,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,324評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡址愿,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,542評(píng)論 2 332
  • 正文 我和宋清朗相戀三年该镣,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片响谓。...
    茶點(diǎn)故事閱讀 39,711評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡损合,死狀恐怖省艳,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情嫁审,我是刑警寧澤拍埠,帶...
    沈念sama閱讀 35,424評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站土居,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏嬉探。R本人自食惡果不足惜擦耀,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,017評(píng)論 3 326
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望涩堤。 院中可真熱鬧眷蜓,春花似錦、人聲如沸胎围。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,668評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)白魂。三九已至汽纤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間福荸,已是汗流浹背蕴坪。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,823評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留敬锐,地道東北人背传。 一個(gè)月前我還...
    沈念sama閱讀 47,722評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像台夺,于是被迫代替她去往敵國(guó)和親径玖。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,611評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容