91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android自定義控件實現餅狀圖

發布時間:2020-09-29 21:46:43 來源:腳本之家 閱讀:145 作者:王世暉 欄目:移動開發

本文實現一個如圖所示的控件,包括兩部分,左邊的餅狀圖和中間的兩個小方塊,及右邊的兩行文字

Android自定義控件實現餅狀圖

實現起來比較簡單,只是一些繪圖API的調用

核心代碼在onDraw函數里邊,對靜態控件進行繪制即可

@Override
protected void onDraw(Canvas canvas) {
 super.onDraw(canvas);
 /**
 * 餅狀圖的x坐標
 */
 float centreX= getWidth()/5;
 /**
 * 餅狀圖的y坐標
 */
 float centreY= getHeight()/2;
 /**
 * 文字的大小
 */
 float textSize=getHeight()/7;
 float width=(float)getWidth();
 float height=(float)getHeight();
 /**
 * 中間小正方形邊長的一半
 */
 float halfSmallRec =((float)getHeight())*3/70;
 percent =((float) mBigBallNumber)/(mBigBallNumber + mSmallBallNumber);
 /**
 * 求餅狀圖的半徑
 */
 radius= Math.min(getWidth() * 1 / 8, getHeight() * 10 / 35);
 /**
 * 構建一個正方形,餅狀圖是這個正方形的內切圓
 */
 rectf=new RectF((int)(centreX-radius),(int)(centreY-radius),(int)(centreX+radius),(int)(centreY+radius));
 /**
 * 設置餅狀圖畫筆的顏色,先繪制大球占的比例
 */
 piePaint.setColor(mBigBallColor);
 /* The arc is drawn clockwise. An angle of 0 degrees correspond to the
 * geometric angle of 0 degrees (3 o'clock on a watch.)*/
 /* drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter,Paint paint)*/
 /**
 * 繪制大球的扇形圖,float startAngle起始角度的0度的位置在3點鐘方向
 * 因此大球的扇形圖要從12點鐘開始繪制,所以起始角度為270度
 */
 canvas.drawArc(rectf, 270, 360 * percent, true, piePaint);
 /**
 * 換種顏色,開始繪制小球占的餅狀圖
 */
 piePaint.setColor(mSmallBallColor);
 /**
 * 起始角度就是12點鐘加上360度乘以大球占的比例,12點鐘轉換為起始角度為270度
 */
 canvas.drawArc(rectf, 270 + 360 * percent, 360 - 360 * percent, true, piePaint);
 顏色更改為大球的顏色*/
 piePaint.setColor(mBigBallColor);
 /**
 * 繪制上邊的小方塊,也就是大球的方塊
 */
 canvas.drawRect(width * 2 / 5 - halfSmallRec, height* 23/ 60 - halfSmallRec, width * 2 / 5 + halfSmallRec, height *23/ 60 + halfSmallRec, piePaint);
 /**
 * 更改畫筆顏色為小球顏色
 */
 piePaint.setColor(mSmallBallColor);
 /**
 * 繪制下邊的小方塊即小球的小方塊
 */
 canvas.drawRect(width * 2 / 5 - halfSmallRec, height * 37 / 60 - halfSmallRec, width * 2 / 5 + halfSmallRec, height * 37 / 60 + halfSmallRec, piePaint);
 /**
 * 開始繪制文字,先設置文字顏色
 */
 textPaint.setColor(getResources().getColor(typedValue.resourceId));
 /**
 * 設置問題大小
 */
 textPaint.setTextSize(textSize);
 /**
 * 大球數量
 */
 String strBig = strBigBallName + mBigBallNumber;
 /**
 * 測量文字寬度
 */
 float textBigWidth =textPaint.measureText(strBig);
 Paint.FontMetrics fontMetrics=textPaint.getFontMetrics();
 /**
 * 繪制上邊大球數量
 */
 canvas.drawText(strBig, width * 9 / 20 + textBigWidth / 2, height *23/ 60 - fontMetrics.top / 3, textPaint);
 /**
 * 小球數量
 */
 String strSmall = strSmallBallName + mSmallBallNumber;
 /**
 * 測量文字寬度
 */
 float textUnderWidth=textPaint.measureText(strSmall);
 /**
 * 繪制下邊的小球數量
 */
 canvas.drawText(strSmall,width*9/20+textUnderWidth/2,height*37/60-fontMetrics.top/3,textPaint);
 /**
 * 更改畫筆顏色,開始繪制百分比
 */
 textPaint.setColor(getResources().getColor(R.color.half_transparent));
 String strBigPercent =" ("+ mPercentBigBall +")";
 /**
 * 測量大球百分比文字寬度
 */
 float bigPercent =textPaint.measureText(strBigPercent);
 /**drawText(String text, float x, float y, Paint paint)
 * 繪制文字的API,四個參數分別是文字內容,起始繪制x坐標,起始繪制y坐標,畫筆
 * 以為設置了居中繪制,因此穿進去的xy坐標為文字的中心點
 */
 canvas.drawText(strBigPercent, width * 9 / 20+ textBigWidth + bigPercent /2, height*23 / 60-fontMetrics.top*1/3, textPaint);
 /**
 * 同樣的道理繪制小球的百分比
 */
 String strSmallPercent =" ("+ mPercentSmallBall +")";
 float smallPercent =textPaint.measureText(strSmallPercent);
 canvas.drawText(strSmallPercent,width*9/20+textUnderWidth+ smallPercent /2,height*37/60-fontMetrics.top/3,textPaint);
}

Canvas 繪制文本時,使用FontMetrics對象,計算位置的坐標。參考:使用FontMetrics對象計算位置坐標

Android自定義控件實現餅狀圖

設置文字繪制以中心為起點開始繪制

textPaint.setTextAlign(Paint.Align.CENTER);

x的坐標好計算,y坐標需要按需使用FontMetrics幾個屬性即可

完整代碼如下:

public class PieHalfView extends View {
 /**
 * 左邊餅狀圖的畫筆
 */
 private Paint piePaint;
 /**
 * 右邊文字的畫筆
 */
 private Paint textPaint;
 /**
 * 餅狀圖的半徑
 */
 private float radius;
 private RectF rectf;
 /**
 * 餅狀圖中第一個扇形占整個圓的比例
 */
 private float percent;
 /**
 * 深淺兩種顏色
 */
 private int mBigBallColor, mSmallBallColor;
 /**
 * 大小球的數量
 */
 private int mBigBallNumber;
 private int mSmallBallNumber;
 /**
 * 大小球所占的百分比
 */
 private String mPercentBigBall;
 private String mPercentSmallBall;
 /**
 * 動態獲取屬性
 */
 private TypedValue typedValue;
 /**
 * 中間的文字信息
 */
 private String strBigBallName;
 private String strSmallBallName;
 
 public PieHalfView(Context context) {
 super(context);
 init(context);
 }
 
 public PieHalfView(Context context, AttributeSet attrs) {
 super(context, attrs);
 init(context);
 }
 
 public PieHalfView(Context context, AttributeSet attrs, int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 init(context);
 }
 private void init(Context context) {
 /**
 * 設置餅狀圖畫筆
 */
 piePaint =new Paint();
 piePaint.setAntiAlias(true);
 piePaint.setStyle(Paint.Style.FILL);
 /**
 * 設置文字畫筆
 */
 textPaint=new Paint();
 textPaint.setStyle(Paint.Style.STROKE);
 textPaint.setAntiAlias(true);
 textPaint.setTextAlign(Paint.Align.CENTER);
 /**
 * 下邊設置一些默認的值,如果調用者沒有傳值進來的話,用這些默認值
 */
 mBigBallColor = 0xFF9CCA5D;
 mSmallBallColor =0xFF5F7048;
 /*TypedValue:Container for a dynamically typed data value. Primarily used with Resources for holding resource values.*/
 typedValue=new TypedValue();
 context.getTheme().resolveAttribute(R.attr.maintextclor,typedValue,true);
 mBigBallNumber =1;
 mSmallBallNumber =3;
 mPercentBigBall ="40%";
 mPercentSmallBall ="60%";
 strBigBallName =getResources().getString(R.string.big);
 strSmallBallName =getResources().getString(R.string.small);
 }
 
 @Override
 protected void onDraw(Canvas canvas) {
 super.onDraw(canvas);
 /**
 * 餅狀圖的x坐標
 */
 float centreX= getWidth()/5;
 /**
 * 餅狀圖的y坐標
 */
 float centreY= getHeight()/2;
 /**
 * 文字的大小
 */
 float textSize=getHeight()/7;
 float width=(float)getWidth();
 float height=(float)getHeight();
 /**
 * 中間小正方形邊長的一半
 */
 float halfSmallRec =((float)getHeight())*3/70;
 percent =((float) mBigBallNumber)/(mBigBallNumber + mSmallBallNumber);
 /**
 * 求餅狀圖的半徑
 */
 radius= Math.min(getWidth() * 1 / 8, getHeight() * 10 / 35);
 /**
 * 構建一個正方形,餅狀圖是這個正方形的內切圓
 */
 rectf=new RectF((int)(centreX-radius),(int)(centreY-radius),(int)(centreX+radius),(int)(centreY+radius));
 /**
 * 設置餅狀圖畫筆的顏色,先繪制大球占的比例
 */
 piePaint.setColor(mBigBallColor);
 /* The arc is drawn clockwise. An angle of 0 degrees correspond to the
 * geometric angle of 0 degrees (3 o'clock on a watch.)*/
 /* drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter,Paint paint)*/
 /* 繪制大球的扇形圖,float startAngle起始角度的0度的位置在3點鐘方向
 * 因此大球的扇形圖要從12點鐘開始繪制,所以起始角度為270度*/
 canvas.drawArc(rectf, 270, 360 * percent, true, piePaint);
 /**
 * 換種顏色,開始繪制小球占的餅狀圖
 */
 piePaint.setColor(mSmallBallColor);
 /**
 * 起始角度就是12點鐘加上360度乘以大球占的比例,12點鐘轉換為起始角度為270度
 */
 canvas.drawArc(rectf, 270 + 360 * percent, 360 - 360 * percent, true, piePaint);
 /**
 * 顏色更改為大球的顏色*/
  piePaint.setColor(mBigBallColor);
 /**
 * 繪制上邊的小方塊,也就是大球的方塊
 */
 canvas.drawRect(width * 2 / 5 - halfSmallRec, height* 23/ 60 - halfSmallRec, width * 2 / 5 + halfSmallRec, height *23/ 60 + halfSmallRec, piePaint);
 /**
 * 更改畫筆顏色為小球顏色
 */
 piePaint.setColor(mSmallBallColor);
 /**
 * 繪制下邊的小方塊即小球的小方塊
 */
 canvas.drawRect(width * 2 / 5 - halfSmallRec, height * 37 / 60 - halfSmallRec, width * 2 / 5 + halfSmallRec, height * 37 / 60 + halfSmallRec, piePaint);
 /**
 * 開始繪制文字,先設置文字顏色
 */
 textPaint.setColor(getResources().getColor(typedValue.resourceId));
 /**
 * 設置問題大小
 */
 textPaint.setTextSize(textSize);
 /**
 * 大球數量
 */
 String strBig = strBigBallName + mBigBallNumber;
 /**
 * 測量文字寬度
 */
 float textBigWidth =textPaint.measureText(strBig);
 Paint.FontMetrics fontMetrics=textPaint.getFontMetrics();
 /**
 * 繪制上邊大球數量
 */
 canvas.drawText(strBig, width * 9 / 20 + textBigWidth / 2, height *23/ 60 - fontMetrics.top / 3, textPaint);
 /**
 * 小球數量
 */
 String strSmall = strSmallBallName + mSmallBallNumber;
 /**
 * 測量文字寬度
 */
 float textUnderWidth=textPaint.measureText(strSmall);
 /**
 * 繪制下邊的小球數量
 */
 canvas.drawText(strSmall,width*9/20+textUnderWidth/2,height*37/60-fontMetrics.top/3,textPaint);
 /**
 * 更改畫筆顏色,開始繪制百分比
 */
 textPaint.setColor(getResources().getColor(R.color.half_transparent));
 String strBigPercent =" ("+ mPercentBigBall +")";
 /**
 * 測量大球百分比文字寬度*/
 float bigPercent =textPaint.measureText(strBigPercent);
 /** drawText(String text, float x, float y, Paint paint)
 * 繪制文字的API,四個參數分別是文字內容,起始繪制x坐標,起始繪制y坐標,畫筆
 * 以為設置了居中繪制,因此穿進去的xy坐標為文字的中心點
 */
 canvas.drawText(strBigPercent, width * 9 / 20+ textBigWidth + bigPercent /2, height*23 / 60-fontMetrics.top*1/3, textPaint);
 /*
 * 同樣的道理繪制小球的百分比
 */
 String strSmallPercent =" ("+ mPercentSmallBall +")";
 float smallPercent =textPaint.measureText(strSmallPercent);
 canvas.drawText(strSmallPercent,width*9/20+textUnderWidth+ smallPercent /2,height*37/60-fontMetrics.top/3,textPaint);
 }
 public void setPercent(float percent1){
 this.percent =percent1;
 invalidate();
 }
 public void setColor(int mBigBallColor,int mSmallBallColor){
 this.mBigBallColor =mBigBallColor;
 this.mSmallBallColor =mSmallBallColor;
 invalidate();
 }
 
 public void setOverRunner(String bigPecent, String smallPercent, int big, int small,
 int bigColor, int smallColor){
 this.mPercentBigBall = bigPecent;
 this.mPercentSmallBall = smallPercent;
 this.mBigBallNumber = big;
 this.mSmallBallNumber = small;
 this.mBigBallColor = bigColor;
 this.mSmallBallColor = smallColor;
 invalidate();
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌海市| 壶关县| 永寿县| 台安县| 五家渠市| 论坛| 旬阳县| 中方县| 承德市| 二手房| 伊春市| 花莲县| 五河县| 潼南县| 东城区| 长丰县| 景德镇市| 金川县| 亳州市| 鄄城县| 陇南市| 日土县| 靖边县| 江华| 昂仁县| 永仁县| 镇巴县| 枣阳市| 内黄县| 固安县| 尼木县| 大余县| 新昌县| 高雄县| 通江县| 同江市| 新源县| 池州市| 遂宁市| 大宁县| 湘阴县|