Paint畫筆及Color

Paint paint = new Paint();
// 設置paint爲無鋸齒
paint.setAntiAlias(true);
// 設置顏色
paint.setColor(Color.RED);
// 設置顏色
paint.setColor(Color.rgb(255, 0, 0));
// 設置透明度
paint.setAlpha(256);
// 提取顏色
Color.red(0xcccccc);
// 設置爲另外一個paint對象
paint.set(new Paint());
// 設置字體尺寸
paint.setTextSize(14);
// 空心 Paint.Style.FILL 實心
paint.setStyle(Paint.Style.STROKE);
// 空心外框寬度
paint.setStrokeWidth(5);
// 空心矩形
canvas.drawRect((320 - 80) / 2, 20, (320 - 80) / 2 + 80, 20 + 40, paint);
// 實心
paint.setStyle(Paint.Style.FILL);
// 實心矩形
canvas.drawRect(0, 20, 40, 20 + 40, paint);
Color
Color.BLACK:// 黑色
   
Color.BLUE:// 藍色
   
Color.CYAN:// 青綠色
   
Color.DKGRAY:// 灰黑色
   
Color.YELLOW:// 黃色
   
Color.GRAY:// 灰色
   
Color.GREEN:// 綠色
   
Color.LTGRAY:// 淺灰色
   
Color.MAGENTA:// 紅紫色
   
Color.RED:// 紅色
   
Color.WHITE:// 白色
   
Color.TRANSPARENT:// 透明


版權聲明:本文爲博主原創文章,未經博主容許不得轉載。java

相關文章
相關標籤/搜索