Android仿微信攝像圓環(huán)進(jìn)度

平時都路上嘁锯,生活上遇到新奇的事情请毛,都要立即打開微信視頻錄下來發(fā)給朋友看看志鞍。這個錄制進(jìn)度條看起來還不錯哦,就仿著寫了一個方仿,不是樣式完全的高仿固棚,是功能的仿制。

微信效果:
微信效果

github代碼直通車

自制效果:
自制效果
實(shí)現(xiàn)過程:

1.自定義圓半徑和圓環(huán)顏色屬性:

    <declare-styleable name="CiclePercentView">
        <attr name="radius" format="integer"/>
        <attr name="ring_color" format="color"/>
    </declare-styleable>

2.設(shè)置3支畫筆仙蚜,分別畫圓環(huán)玻孟,背景淺白色,中心白色圓鳍征。

    private void init() {
        paint = new Paint();
        paint.setColor(ringColor);
        paint.setStyle(Paint.Style.STROKE);
        paint.setAntiAlias(true);
        paint.setStrokeWidth(14);

        bgPaint = new Paint();
        bgPaint.setAntiAlias(true);
        bgPaint.setColor(getResources().getColor(R.color.halfwhite));

        centerPaint = new Paint();
        centerPaint.setAntiAlias(true);
        centerPaint.setColor(Color.WHITE);

        //起始角度
        startAngle = -90;
    }

3.依次畫背景圓黍翎,中心圓,圓弧艳丛。canvas.drawArc()匣掸,第一個參數(shù)表示圓弧外切矩形大小氮双;第二碰酝、三個參數(shù)表示起始角度,當(dāng)前角度戴差,-90度為12點(diǎn)方向送爸,0度為3點(diǎn)方向,這里用-90度作為起始;第四個參數(shù)表示是否與中心點(diǎn)填充為扇形袭厂,false表示只畫圓弧線墨吓;

畫圓弧drawArc()方法參數(shù)

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //畫圓弧
        RectF rectf = new RectF(6,6,dp2px(radius-2),dp2px(radius-2));
        canvas.drawCircle(getMeasuredWidth()/2,getMeasuredHeight()/2,dp2px(radius)/2,bgPaint);
        canvas.drawCircle(getMeasuredWidth()/2,getMeasuredHeight()/2,dp2px(radius/3)/2,centerPaint);
        canvas.drawArc(rectf,startAngle,curAngle,false,paint);
    }

4.計時器,每100毫秒更新一次進(jìn)度纹磺,可設(shè)置拍攝總時間totalTime;時間轉(zhuǎn)化為進(jìn)度范圍為0-100帖烘;

    public void countDown(final int totalTime){
        countDownTimer = new CountDownTimer(totalTime, (long)(totalTime/100f)) {
            @Override
            public void onTick(long millisUntilFinished) {
                curPercentate = (int) ((totalTime-millisUntilFinished)/(float)totalTime*100);
                percentToAngle(curPercentate);
            }

            @Override
            public void onFinish() {
                curPercentate = 0;
                percentToAngle(curPercentate);
            }
        }.start();
    }

5.按下開始拍攝,只要抬起就完成拍攝橄杨,進(jìn)度恢復(fù)為0秘症。

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                countDown(countdownTime);
                break;
            case MotionEvent.ACTION_UP:
                countDownTimer.cancel();
                curPercentate = 0;
                percentToAngle(curPercentate);
                break;
        }
        return true;
    }

CiclePercentView類完整代碼:

public class CiclePercentView extends View{
    private Paint paint;
    private int curAngle;
    private int curPercentate;
    private Paint bgPaint,centerPaint;
    private int radius;
    private int ringColor;
    private int startAngle;
    private int countdownTime;
    private CountDownTimer countDownTimer;

    public CiclePercentView(Context context) {
        super(context);
        init();
    }

    public CiclePercentView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);

        TypedArray array = context.obtainStyledAttributes(attrs,R.styleable.CiclePercentView);
        radius = array.getInt(R.styleable.CiclePercentView_radius,85);
        ringColor = array.getColor(R.styleable.CiclePercentView_ring_color,Color.GREEN);
        array.recycle();

        init();
    }

    private void init() {
        paint = new Paint();
        paint.setColor(ringColor);
        paint.setStyle(Paint.Style.STROKE);
        paint.setAntiAlias(true);
        paint.setStrokeWidth(14);

        bgPaint = new Paint();
        bgPaint.setAntiAlias(true);
        bgPaint.setColor(getResources().getColor(R.color.halfwhite));

        centerPaint = new Paint();
        centerPaint.setAntiAlias(true);
        centerPaint.setColor(Color.WHITE);

        //起始角度
        startAngle = -90;
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //畫圓弧
        RectF rectf = new RectF(6,6,dp2px(radius-2),dp2px(radius-2));
        canvas.drawCircle(getMeasuredWidth()/2,getMeasuredHeight()/2,dp2px(radius)/2,bgPaint);
        canvas.drawCircle(getMeasuredWidth()/2,getMeasuredHeight()/2,dp2px(radius/3)/2,centerPaint);
        canvas.drawArc(rectf,startAngle,curAngle,false,paint);
    }

    private void percentToAngle(int percentage){
        curAngle =  (int) (percentage/100f*360);
        invalidate();
    }

    public void setCountdownTime(int countdownTime){
        this.countdownTime = countdownTime;
    }

    public void countDown(final int totalTime){
        countDownTimer = new CountDownTimer(totalTime, (long)(totalTime/100f)) {
            @Override
            public void onTick(long millisUntilFinished) {
                curPercentate = (int) ((totalTime-millisUntilFinished)/(float)totalTime*100);
                percentToAngle(curPercentate);
            }

            @Override
            public void onFinish() {
                curPercentate = 0;
                percentToAngle(curPercentate);
            }
        }.start();
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
            case MotionEvent.ACTION_DOWN:
                countDown(countdownTime);
                break;
            case MotionEvent.ACTION_UP:
                countDownTimer.cancel();
                curPercentate = 0;
                percentToAngle(curPercentate);
                break;
        }
        return true;
    }

    private int dp2px(int dp){
        return (int) (getContext().getResources().getDisplayMetrics().density*dp + 0.5);
    }
}

喜歡我就點(diǎn)我吧,讀者的關(guān)注和喜歡是我不懈的動力式矫。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末乡摹,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子采转,更是在濱河造成了極大的恐慌聪廉,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件氏义,死亡現(xiàn)場離奇詭異锄列,居然都是意外死亡图云,警方通過查閱死者的電腦和手機(jī)惯悠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來竣况,“玉大人克婶,你說我怎么就攤上這事〉と” “怎么了情萤?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長摹恨。 經(jīng)常有香客問我筋岛,道長,這世上最難降的妖魔是什么晒哄? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任睁宰,我火速辦了婚禮,結(jié)果婚禮上寝凌,老公的妹妹穿的比我還像新娘柒傻。我一直安慰自己,他們只是感情好较木,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布红符。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪预侯。 梳的紋絲不亂的頭發(fā)上致开,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天,我揣著相機(jī)與錄音雌桑,去河邊找鬼喇喉。 笑死,一個胖子當(dāng)著我的面吹牛校坑,可吹牛的內(nèi)容都是我干的拣技。 我是一名探鬼主播,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼耍目,長吁一口氣:“原來是場噩夢啊……” “哼膏斤!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起邪驮,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤莫辨,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后毅访,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體沮榜,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了筷黔。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片铅檩。...
    茶點(diǎn)故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖型酥,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情查乒,我是刑警寧澤弥喉,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站玛迄,受9級特大地震影響由境,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蓖议,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一虏杰、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧拒担,春花似錦嘹屯、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽钧栖。三九已至,卻和暖如春婆翔,著一層夾襖步出監(jiān)牢的瞬間拯杠,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工啃奴, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留潭陪,地道東北人。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓最蕾,卻偏偏與公主長得像依溯,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子瘟则,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,562評論 2 349

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