Android自定義圓環(huán)比例控件

IOS效果圖如下:

EBA63DDEE18F4952A4EA1D4477613BE6.png

Android自定義view效果圖如下

74FB14B4AC26A02B95E8666B29B7E4F9.jpg

自定義圓環(huán)比例控件類

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;

public class CircleScaleView extends View {
    private int firstColor;//第一段顏色
    private int secondColor;//第二段顏色
    private int thirdlyColor;//第三段顏色
    private Paint mPaint;//畫筆
    private int mRadius;//半徑
    private float mCircleWidth;//圓環(huán)的寬度
    private int mWidth;
    private int mHeight;
    private RectF mRectF;
    private float sweepAngle;//繪制圓環(huán)的角度
    private float firstPercent;//第一段比例
    private float secondPercent;//第二段比例
    private float thirdlyPercent;//第三段比例

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

    public CircleScaleView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public CircleScaleView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray array = context.getTheme().obtainStyledAttributes(attrs, R.styleable.CircleScaleView, defStyleAttr, 0);
        int n = array.getIndexCount();
        for (int i = 0; i < n; i++) {
            int attr = array.getIndex(i);
            switch (attr) {
                case R.styleable.CircleScaleView_firstColor:
                    firstColor = array.getColor(attr, Color.parseColor("#fac62d"));
                    break;
                case R.styleable.CircleScaleView_secondColor:
                    secondColor = array.getColor(attr, Color.parseColor("#65cff6"));
                    break;
                case R.styleable.CircleScaleView_thirdlyColor:
                    thirdlyColor = array.getColor(attr, Color.parseColor("#fe9a9c"));
                    break;
                case R.styleable.CircleScaleView_circleWidth:
                    mCircleWidth = array.getDimensionPixelSize(attr, dip2px(context, 20));
                    break;
                case R.styleable.CircleScaleView_radius:
                    mRadius = array.getDimensionPixelSize(attr, dip2px(context, 20));
                    break;
            }
        }
        array.recycle();
        initPaint();
    }

    //初始化畫筆
    private void initPaint() {
        mPaint = new Paint();
        mPaint.setAntiAlias(true);
        mPaint.setStyle(Paint.Style.STROKE);
    }

    //設(shè)置圓環(huán)各段比例
    public void setCirclePercent(float first, float second, float thirdly) {
        float total = first + second + thirdly;
        firstPercent = first / total;
        secondPercent = second / total;
        thirdlyPercent = thirdly / total;
        invalidate();//重繪
    }

    //繪制圓環(huán)
    @Override
    protected void onDraw(Canvas canvas) {
        mPaint.setStrokeWidth(mCircleWidth);
        mRectF = new RectF(mCircleWidth / 2, mCircleWidth / 2, mRadius * 2 - mCircleWidth / 2, mRadius * 2 - mCircleWidth / 2);
        //第一段圓環(huán)繪制
        float startAngle = -90;
        sweepAngle = 360 * firstPercent;
        mPaint.setColor(firstColor);
        canvas.drawArc(mRectF, startAngle, sweepAngle, false, mPaint);
        //第二段圓環(huán)繪制
        startAngle = startAngle + sweepAngle;
        sweepAngle = 360 * secondPercent;
        mPaint.setColor(secondColor);
        canvas.drawArc(mRectF, startAngle, sweepAngle, false, mPaint);
        //第三段圓環(huán)繪制
        startAngle = startAngle + sweepAngle;
        sweepAngle = 360 * thirdlyPercent;
        mPaint.setColor(thirdlyColor);
        canvas.drawArc(mRectF, startAngle, sweepAngle, false, mPaint);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        //設(shè)置寬度
        int specMode = MeasureSpec.getMode(widthMeasureSpec);
        int specSize = MeasureSpec.getSize(widthMeasureSpec);
        if (specMode == MeasureSpec.EXACTLY)// match_parent , accurate
        {
            mWidth = (int) (specSize + mCircleWidth);
        } else {
            if (specMode == MeasureSpec.AT_MOST)// wrap_content
            {
                mWidth = (mRadius * 2);
            }
        }
        //設(shè)置高度
        specMode = MeasureSpec.getMode(heightMeasureSpec);
        specSize = MeasureSpec.getSize(heightMeasureSpec);
        if (specMode == MeasureSpec.EXACTLY)// match_parent , accurate
        {
            mHeight = (int) (specSize + mCircleWidth);
        } else {
            if (specMode == MeasureSpec.AT_MOST)// wrap_content
            {
                mHeight = (mRadius * 2);
            }
        }
        setMeasuredDimension(mWidth + 10, mHeight + 10);
    }

    //根據(jù)手機的分辨率從 dp 的單位 轉(zhuǎn)成為 px(像素)
    public static int dip2px(Context context, float dpValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dpValue * scale + 0.5f);
    }
}

styleable添加屬性

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CircleScaleView">
        <attr name="firstColor" format="color|reference" />
        <attr name="secondColor" format="color|reference" />
        <attr name="thirdlyColor" format="color|reference" />
        <attr name="circleWidth" format="dimension" />
        <attr name="radius" format="dimension" />
    </declare-styleable>
</resources>

xml使用控件

    <com.codans.circlescale.CircleScaleView
        android:id="@+id/circleScaleView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:circleWidth="6dp"
        app:firstColor="#ff00ff"
        app:radius="100dp"
        app:secondColor="#a286da"
        app:thirdlyColor="#65cff6" />

在代碼中中設(shè)置比例

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {
    private CircleScaleView circleScaleView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        circleScaleView = (CircleScaleView) findViewById(R.id.circleScaleView);
        if (circleScaleView != null) {
            circleScaleView.setCirclePercent(1, 2, 2);
        }
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市工碾,隨后出現(xiàn)的幾起案子呛梆,更是在濱河造成了極大的恐慌艘包,老刑警劉巖粒梦,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異吝羞,居然都是意外死亡链沼,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門麦射,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蛾娶,“玉大人,你說我怎么就攤上這事潜秋』桌牛” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵峻呛,是天一觀的道長罗售。 經(jīng)常有香客問我辜窑,道長,這世上最難降的妖魔是什么寨躁? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任穆碎,我火速辦了婚禮,結(jié)果婚禮上职恳,老公的妹妹穿的比我還像新娘所禀。我一直安慰自己,他們只是感情好放钦,可當(dāng)我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布色徘。 她就那樣靜靜地躺著,像睡著了一般操禀。 火紅的嫁衣襯著肌膚如雪褂策。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天床蜘,我揣著相機與錄音辙培,去河邊找鬼。 笑死邢锯,一個胖子當(dāng)著我的面吹牛扬蕊,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播丹擎,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼尾抑,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了蒂培?” 一聲冷哼從身側(cè)響起再愈,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎护戳,沒想到半個月后翎冲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡媳荒,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年抗悍,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片钳枕。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡缴渊,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出鱼炒,到底是詐尸還是另有隱情衔沼,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站指蚁,受9級特大地震影響菩佑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜欣舵,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一擎鸠、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧缘圈,春花似錦劣光、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至遣疯,卻和暖如春雄可,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背缠犀。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工数苫, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人辨液。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓虐急,卻偏偏與公主長得像,于是被迫代替她去往敵國和親滔迈。 傳聞我的和親對象是個殘疾皇子止吁,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,877評論 2 345

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

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,519評論 25 707
  • 導(dǎo)語 當(dāng)系統(tǒng)控件不能滿足我們的需求的時候,這時候我們就需要自定義控件燎悍,根據(jù)我們的需求來定制一個能滿足我們需求的控件...
    一個有故事的程序員閱讀 6,381評論 2 14
  • 20170703 入夏敬惦,大汗淋漓,依舊想要運動的我們谈山,是不是真愛俄删?!媽媽很高興奏路,在昨天我們仨一起到媽媽找到的新場地...
    春蕓1216閱讀 230評論 1 4
  • 姑娘抗蠢,你為何而失眠 是工作的焦慮 還是那多情的男子 亦或是前途的未知與迷茫 姑娘,你為何而憂傷 是那遠離的故鄉(xiāng) 還...
    Grace__閱讀 182評論 0 2