自定義View - 仿QQ運(yùn)動(dòng)步數(shù)進(jìn)度效果

我blog也寫過卖擅,歡迎各位看我博客,https://blog.csdn.net/qq_24675479
首先看下效果圖

效果圖.gif

在做這個(gè)項(xiàng)目之前先了解下文字獲取
我上一篇 自定義View入門 - 自定義TextView 有寫過——http://www.reibang.com/p/7b5e4f5abb74

分析.png

今天詳細(xì)講解一下baseLine 基線(參考文章:文淑大神的自定義View之繪圖篇(四)http://blog.csdn.net/u012551350/article/details/51361778
FontMetrics

基線.png

top:可繪制的最高高度所在線
bottom:可繪制的最低高度所在線
ascent :系統(tǒng)建議的篙顺,繪制單個(gè)字符時(shí)政基,字符應(yīng)當(dāng)?shù)淖罡吒叨人诰€
descent:系統(tǒng)建議的示辈,繪制單個(gè)字符時(shí)凑兰,字符應(yīng)當(dāng)?shù)淖畹透叨人诰€

獲取實(shí)例

Paint.FontMetrics fontMetrics = mPaint.getFontMetrics();
Paint.FontMetricsInt fm=  mPaint.getFontMetricsInt();

成員變量

        float ascent = fontMetrics.ascent;
        float descent = fontMetrics.descent;
        float top = fontMetrics.top;
        float bottom = fontMetrics.bottom;
        float leading = fontMetrics.leading;

這里的ascent掌桩,descent,top姑食,bottom波岛,leading指的是到基線baseline的位置

[圖片上傳失敗...(image-4386fb-1530855738868)]

文字的高度

         float top = fontMetrics.top + baseLineY;
        float bottom = fontMetrics.bottom + baseLineY;
        //文字高度
        float height= bottom - top; //注意top為負(fù)數(shù)
        //文字中點(diǎn)y坐標(biāo)
        float center = (bottom - top) / 2;

即中線是(bottom-top)/2,實(shí)際呢是bottom+top只是因?yàn)檫@里的top是負(fù)的(圖片上的top到baseline的距離)

已知中線求baseline
[圖片上傳失敗...(image-9ea4bc-1530855738868)]
結(jié)論
baseline=centerY+A-fm.bottom;

centerY呢實(shí)際就是getHeight/2,整體高度的一半音半,然后求基線的y坐標(biāo)则拷,實(shí)際就是(top-bottom)/2-fontMetrics.bottom;再次強(qiáng)調(diào):這里的ascent,descent曹鸠,top煌茬,bottom,leading指的是到基線baseline的位置彻桃。最后相加getHeight+(top-bottom)/2-fontMetrics.bottom**

接下來開始做項(xiàng)目:

  • 第一步自定義屬性
    一共需要:內(nèi)部圓環(huán)顏色宣旱,外部圓環(huán)顏色,圓環(huán)寬度叛薯,文字顏色,文字大小五種
<declare-styleable name="QQStepView">
        <attr name="outerColor" format="color" />
        <attr name="innerColor" format="color" />
        <attr name="borderWidth" format="dimension" />
        <attr name="stepTextSize" format="dimension" />
        <attr name="stepTextColor" format="color" />
    </declare-styleable>
  • 自定義view獲取屬性笙纤,設(shè)置屬性等
public class QQStepView extends View {
    private int mOuterColor = Color.RED;
    private int mInnerColor = Color.BLUE;
    private int mBorderWidth = 20;
    private int mStepTextSize;
    private int mStepTextColor;
    private Paint mOuterPaint, mInnerPaint, mTextPaint;
    private int mStepMax;//總的步數(shù)
    private int mCurrentStep;//當(dāng)前步數(shù)

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

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

    public QQStepView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.QQStepView);
        mOuterColor = ta.getColor(R.styleable.QQStepView_outerColor, mOuterColor);
        mInnerColor = ta.getColor(R.styleable.QQStepView_innerColor, mInnerColor);
        mBorderWidth = (int) ta.getDimension(R.styleable.QQStepView_borderWidth, mBorderWidth);
        mStepTextSize = ta.getDimensionPixelOffset(R.styleable.QQStepView_stepTextSize, mStepTextSize);
        mStepTextColor = ta.getColor(R.styleable.QQStepView_stepTextColor, mStepTextColor);
        ta.recycle();
        //內(nèi)弧
        mOuterPaint = new Paint();
        mOuterPaint.setAntiAlias(true);
        mOuterPaint.setStrokeWidth(mBorderWidth);
        mOuterPaint.setColor(mOuterColor);
        mOuterPaint.setStrokeCap(Paint.Cap.ROUND);//設(shè)置下方為圓形
        mOuterPaint.setStyle(Paint.Style.STROKE);//設(shè)置內(nèi)部為空心
        //外弧
        mInnerPaint = new Paint();
        mInnerPaint.setAntiAlias(true);
        mInnerPaint.setStrokeWidth(mBorderWidth);
        mInnerPaint.setColor(mInnerColor);
        mInnerPaint.setStrokeCap(Paint.Cap.ROUND);//設(shè)置下方為圓形
        mInnerPaint.setStyle(Paint.Style.STROKE);//設(shè)置內(nèi)部為空心

        //文字
        mTextPaint = new Paint();
        mTextPaint.setAntiAlias(true);
        mTextPaint.setTextSize(mStepTextSize);
        mTextPaint.setColor(mStepTextColor);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        //調(diào)用者在布局文件中可能 wrap_content導(dǎo)致寬高不一致
        //確保是正方形
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = MeasureSpec.getSize(heightMeasureSpec);
        setMeasuredDimension(width > height ? height : width, width > height ? height : width);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        //1.畫外圓弧   邊緣沒有顯示完整
        //RectF recf = new RectF(0, 0, getWidth(), getHeight());

        int center = getWidth() / 2;
        int radius = getWidth() / 2 - mBorderWidth / 2;
        //mBorderWidth/2,mBorderWidth/2,getWidth()-mBorderWidth/2,getWidth()-mBorderWidth/2
        RectF recf = new RectF(center - radius,
                center - radius,
                center + radius,
                center + radius);
        canvas.drawArc(recf, 135, 270, false, mOuterPaint);
        //2.繪制內(nèi)圓弧
        float sweepAngle = (float) mCurrentStep / mStepMax;
        canvas.drawArc(recf, 135, sweepAngle * 270, false, mInnerPaint);

        //3.繪制文字
        String stepText = mCurrentStep + "";
        Rect rect = new Rect();
        mTextPaint.getTextBounds(stepText,0,stepText.length(),rect);
        int dx = getWidth() / 2 - rect.width() / 2;
        //第一種方式獲取高度
        //int dy = getWidth() / 2 + rect.width()/2;
        //第二種表達(dá)方式獲取高度
        Paint.FontMetricsInt fontMetrics = mTextPaint.getFontMetricsInt();
        //獲取中心(fontMetrics.bottom - fontMetrics.top) / 2
        int dy = (fontMetrics.bottom - fontMetrics.top) / 2 - fontMetrics.bottom;
        int baseLine = getHeight() / 2 + dy;
        canvas.drawText(stepText, dx, baseLine, mTextPaint);

    }
    //其他耗溜,寫幾個(gè)方法讓他動(dòng)起來

    public void setStepMax(int mStepMax) {
        this.mStepMax = mStepMax;
    }

    public void setCurrentStep(int mCurrentStep) {
        this.mCurrentStep = mCurrentStep;
        //不斷繪制 onDraw()
        invalidate();
    }
}

在MainActivity中設(shè)置動(dòng)畫

final QQStepView qqStepView = (QQStepView) findViewById(R.id.step_view);
        qqStepView.setStepMax(5000);
        //屬性動(dòng)畫
        ValueAnimator animator = ValueAnimator.ofFloat(0, 3000);//0到3000的變化
        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                float currentStep = (float) animation.getAnimatedValue();//獲取當(dāng)前值
                qqStepView.setCurrentStep((int) currentStep);
            }
        });
        animator.setDuration(2000);
        animator.start();

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市省容,隨后出現(xiàn)的幾起案子抖拴,更是在濱河造成了極大的恐慌,老刑警劉巖腥椒,帶你破解...
    沈念sama閱讀 211,561評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件阿宅,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡笼蛛,警方通過查閱死者的電腦和手機(jī)洒放,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來滨砍,“玉大人往湿,你說我怎么就攤上這事妖异。” “怎么了领追?”我有些...
    開封第一講書人閱讀 157,162評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵他膳,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我绒窑,道長(zhǎng)棕孙,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,470評(píng)論 1 283
  • 正文 為了忘掉前任些膨,我火速辦了婚禮蟀俊,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘傀蓉。我一直安慰自己欧漱,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評(píng)論 6 385
  • 文/花漫 我一把揭開白布葬燎。 她就那樣靜靜地躺著误甚,像睡著了一般。 火紅的嫁衣襯著肌膚如雪谱净。 梳的紋絲不亂的頭發(fā)上窑邦,一...
    開封第一講書人閱讀 49,806評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音壕探,去河邊找鬼冈钦。 笑死,一個(gè)胖子當(dāng)著我的面吹牛李请,可吹牛的內(nèi)容都是我干的瞧筛。 我是一名探鬼主播,決...
    沈念sama閱讀 38,951評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼导盅,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼较幌!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起白翻,我...
    開封第一講書人閱讀 37,712評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤乍炉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后滤馍,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體岛琼,經(jīng)...
    沈念sama閱讀 44,166評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評(píng)論 2 327
  • 正文 我和宋清朗相戀三年巢株,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了槐瑞。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,643評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡阁苞,死狀恐怖随珠,靈堂內(nèi)的尸體忽然破棺而出灭袁,到底是詐尸還是另有隱情,我是刑警寧澤窗看,帶...
    沈念sama閱讀 34,306評(píng)論 4 330
  • 正文 年R本政府宣布茸歧,位于F島的核電站,受9級(jí)特大地震影響显沈,放射性物質(zhì)發(fā)生泄漏软瞎。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評(píng)論 3 313
  • 文/蒙蒙 一拉讯、第九天 我趴在偏房一處隱蔽的房頂上張望涤浇。 院中可真熱鬧,春花似錦魔慷、人聲如沸只锭。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)蜻展。三九已至,卻和暖如春邀摆,著一層夾襖步出監(jiān)牢的瞬間纵顾,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工栋盹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留施逾,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,351評(píng)論 2 360
  • 正文 我出身青樓例获,卻偏偏與公主長(zhǎng)得像汉额,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子榨汤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評(píng)論 2 348

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