我正在绘画应用程序中,将布局背景设置为白色,并将绘画颜色设置为黑色。但是,在画布中,我正在获得透明的黑色,我希望它是用于画布漆的深色。
我的输出在屏幕截图下方:
我的代码如下:
public DrawView(Context context){
super(context);
setFocusable(true);
setFocusableInTouchMode(true);
this.setOnTouchListener(this);
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setDither(true);
mPaint.setColor(0x80808080);
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeJoin(Paint.Join.ROUND);
mPaint.setStrokeCap(Paint.Cap.ROUND);
mPaint.setStrokeWidth(6);
mCanvas = new Canvas();
mPath = new Path();
paths.add(mPath);
}
最佳答案
mPaint.setColor(Color.BLACK);
代替
mPaint.setColor(0x80808080);
关于android - Android Canvas Paint无法设置深色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10619195/