Android 從 0 開始學(xué)習(xí)自定義 View(二) 自定義圓弧

1.自定義 View 的基本流程

  • 創(chuàng)建 View Class
  • 創(chuàng)建 attr 屬性文件型宝,確定屬性
  • View Class 綁定 attr 屬性
  • onMeasure 測(cè)量
  • onDraw 繪制
1.1 創(chuàng)建 View Class
public class ArcView extends View {
    public ArcView(Context context) {
        this(context, null);
    }
    public ArcView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }
    public ArcView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
}
1.2 創(chuàng)建 attr 屬性
<declare-styleable name="ArcView">
    <!--內(nèi)環(huán)顏色-->
    <attr name="arcInnerColor" format="color" />
    <!--外環(huán)顏色-->
    <attr name="arcOutColor" format="color" />
    <!--環(huán)大小-->
    <attr name="arcWidth" format="dimension" />
    <!--文字-->
    <attr name="arcText" format="string" />
     <!--文字大小-->
    <attr name="arcTextSize" format="dimension" />
    <!--文字顏色-->
    <attr name="arcTextColor" format="color" />
</declare-styleable>
1.3 綁定屬性
private void initAttr(Context context, AttributeSet attrs) {
    TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.ArcView);
    //外環(huán)顏色
    mInnerColor = array.getColor(R.styleable.ArcView_arcInnerColor, mInnerColor);
    //內(nèi)環(huán)顏色
    mOutColor = array.getColor(R.styleable.ArcView_arcOutColor, mOutColor);
    //環(huán)大小
    mWidth = (int) array.getDimension(R.styleable.ArcView_arcWidth, mWidth);
    //文字
    mText = array.getString(R.styleable.ArcView_arcText);
    //文字大小
    mTextSize = array.getDimensionPixelSize(R.styleable.ArcView_arcTextSize, mTextSize);
    //文字顏色
    mTextColor = array.getColor(R.styleable.ArcView_arcTextColor, mTextColor);
    array.recycle();
}
1.4 onMeasure
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    //確保正方形荤懂,將短邊的大小設(shè)為狂傲
    //寬
    int width = MeasureSpec.getSize(widthMeasureSpec);
    //高
    int height = MeasureSpec.getSize(heightMeasureSpec);
    //設(shè)置寬高
    setMeasuredDimension(Math.min(width, height), Math.min(width, height));
}
1.5 onDraw
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
}
  • 第一步,畫內(nèi)環(huán)
private void initInnerPaint() {
    mInnerPaint = new Paint();
    //抗鋸齒
    mInnerPaint.setAntiAlias(true);
    //防抖動(dòng)
    mInnerPaint.setDither(true);
    //寬度
    mInnerPaint.setStrokeWidth(mWidth);
    //顏色
    mInnerPaint.setColor(mInnerColor);
    //設(shè)置狀態(tài)
    mInnerPaint.setStyle(Paint.Style.STROKE);
    //頭部小圓點(diǎn)
    mInnerPaint.setStrokeCap(Paint.Cap.ROUND);
}
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    //畫內(nèi)環(huán)
    RectF rectF = new RectF(mWidth / 2, mWidth / 2, getWidth() - mWidth / 2, getHeight() - mWidth / 2);
    canvas.drawArc(rectF, 135, 270, false, mInnerPaint);
}
內(nèi)環(huán)
  • 第二步韩脏,畫外環(huán)
private void initOutPaint() {
    mOutPaint = new Paint();
    //抗鋸齒
    mOutPaint.setAntiAlias(true);
    //防抖動(dòng)
    mOutPaint.setDither(true);
    //寬度
    mOutPaint.setStrokeWidth(mWidth);
    //顏色
    mOutPaint.setColor(mOutColor);
    //設(shè)置狀態(tài)
    mOutPaint.setStyle(Paint.Style.STROKE);
    //頭部小圓點(diǎn)
    mOutPaint.setStrokeCap(Paint.Cap.ROUND);
}
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    //畫內(nèi)環(huán)
    RectF rectF = new RectF(mWidth / 2, mWidth / 2, getWidth() - mWidth / 2, getHeight() - mWidth / 2);
    canvas.drawArc(rectF, 135, 270, false, mInnerPaint);
    //畫內(nèi)環(huán)
    if (MaxProgress == 0) return;
    float sweepAngle = (float) CurrentProgress / MaxProgress;
    canvas.drawArc(rectF, 135, sweepAngle * 270, false, mOutPaint);
}
外環(huán)
  • 第三步赵抢,畫文字
private void initTextPaint() {
    mTextPaint = new Paint();
    //抗鋸齒
    mTextPaint.setAntiAlias(true);
    //文字大小
    mTextPaint.setTextSize(mTextSize);
    //文字顏色
    mTextPaint.setColor(mTextColor);
}
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    //畫內(nèi)環(huán)
    RectF rectF = new RectF(mWidth / 2, mWidth / 2, getWidth() - mWidth / 2, getHeight() - mWidth / 2);
    canvas.drawArc(rectF, 135, 270, false, mInnerPaint);
    //畫內(nèi)環(huán)
    if (MaxProgress == 0) return;
    float sweepAngle = (float) CurrentProgress / MaxProgress;
    canvas.drawArc(rectF, 135, sweepAngle * 270, false, mOutPaint);
    //畫文字
    //測(cè)量文字寬度
    Rect rect = new Rect();
    mTextPaint.getTextBounds(mText, 0, mText.length(), rect);
    int x = getWidth() / 2 - rect.width() / 2;
    //基線
    Paint.FontMetricsInt fontMetricsInt = mTextPaint.getFontMetricsInt();
    int y = (fontMetricsInt.bottom - fontMetricsInt.top) / 2 - fontMetricsInt.bottom;
    int baseline = getHeight() / 2 + y;
    canvas.drawText(mText, x, baseline, mTextPaint);
}
最終效果圖
自定義圓弧就介紹到這里了瘾晃,如果有什么寫得不對(duì)的搀愧,可以在下方評(píng)論留言,我會(huì)第一時(shí)間改正城侧。

Github 源碼鏈接

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末易遣,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子嫌佑,更是在濱河造成了極大的恐慌豆茫,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件屋摇,死亡現(xiàn)場(chǎng)離奇詭異揩魂,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)炮温,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門火脉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人柒啤,你說我怎么就攤上這事忘分。” “怎么了白修?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)重斑。 經(jīng)常有香客問我兵睛,道長(zhǎng),這世上最難降的妖魔是什么窥浪? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任祖很,我火速辦了婚禮,結(jié)果婚禮上漾脂,老公的妹妹穿的比我還像新娘假颇。我一直安慰自己,他們只是感情好骨稿,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布笨鸡。 她就那樣靜靜地躺著姜钳,像睡著了一般。 火紅的嫁衣襯著肌膚如雪形耗。 梳的紋絲不亂的頭發(fā)上哥桥,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音激涤,去河邊找鬼拟糕。 笑死,一個(gè)胖子當(dāng)著我的面吹牛倦踢,可吹牛的內(nèi)容都是我干的送滞。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼辱挥,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼犁嗅!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起般贼,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤愧哟,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后哼蛆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蕊梧,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年腮介,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了肥矢。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡叠洗,死狀恐怖甘改,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情灭抑,我是刑警寧澤十艾,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站腾节,受9級(jí)特大地震影響忘嫉,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜案腺,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一庆冕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧劈榨,春花似錦访递、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽惭载。三九已至,卻和暖如春跌前,著一層夾襖步出監(jiān)牢的瞬間棕兼,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工抵乓, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留伴挚,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓灾炭,卻偏偏與公主長(zhǎng)得像茎芋,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子蜈出,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

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