国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

【自定義控件】練習(xí):餅狀圖

2019-11-06 09:59:57
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

效果

這里寫(xiě)圖片描述

主要涉及:畫(huà)圓弧、畫(huà)文字

1、畫(huà)圓弧:

RectF rect = new RectF(0,0,300,300);canvas.drawArc(RectF rect,float startAngle,float swipAngle,boolean userCenter,Paint paint);

記錄每一個(gè)結(jié)束時(shí)的角度,下一次開(kāi)始的角度即為上次結(jié)束時(shí)的角度。

主要代碼:

//計(jì)算每一個(gè)pie的角度f(wàn)loat startAngle = 0;//開(kāi)始的角度f(wàn)or (PieData data : pieData) { //將每一部分的圓弧畫(huà)出來(lái) mPaint.setColor(data.getPieColor());//每一塊的顏色 float swipeAngle = data.getPiePRoportion() * 360;//每一塊占多少角度 canvas.drawArc(bigRect, startAngle, swipeAngle, true, mPaint); ...}

2、畫(huà)文字:

計(jì)算文本的位置 小圓半徑 設(shè)為大圓半徑的2/3

這里寫(xiě)圖片描述

主要代碼:

//畫(huà)文本float x0 = width / 2;float y0 = height / 2;float txtAngle = startAngle + swipeAngle / 2;double radians = Math.toRadians(txtAngle);double x1 = x0 + Math.cos(radians) * smallRadius;double y1 = y0 + Math.sin(radians) * smallRadius;Rect textRect = new Rect();String pieName = data.getPieName();mPaint.getTextBounds(pieName, 0, pieName.length(), textRect);x1 = x1 - textRect.width() / 2;y1 = y1 + textRect.height() / 2;mPaint.setColor(data.getPieTxtColor());mPaint.setTextSize(TranslateDimensionUtils.sp2px(mContext, data.getPieTextSize()));canvas.drawText(pieName, (float) x1, (float) y1, mPaint);

代碼: https://github.com/WhatWeCan/customer_views/tree/master/PieView


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 榆树市| 许昌县| 红原县| 夏津县| 高碑店市| 两当县| 天长市| 达孜县| 丹巴县| 珠海市| 浑源县| 河曲县| 岚皋县| 崇义县| 邵阳市| 庆安县| 濉溪县| 祁东县| 赞皇县| 镇安县| 衡阳县| 海盐县| 墨脱县| 保靖县| 广平县| 吉林市| 赤峰市| 湖北省| 元氏县| 通山县| 衡水市| 丰都县| 鄂尔多斯市| 繁昌县| 永春县| 阿拉尔市| 集安市| 麻栗坡县| 南平市| 阳谷县| 嵩明县|