我想画一个像这样的形状:
我可以使用这个形状在画布上绘制,但我必须在运行时用黑色和什么颜色创建这个位图。有没有办法做到这一点,比如使用路径或其他东西?
我想画一个像这样的形状:
我可以使用这个形状在画布上绘制,但我必须在运行时用黑色和什么颜色创建这个位图。有没有办法做到这一点,比如使用路径或其他东西?
有没有办法做到这一点,比如使用路径或其他东西?
是的,您可以使用以下命令创建它Path
:
// the Paint for the path
Paint p = new Paint();
p.setAntiAlias(true);
p.setColor(Color.BLACK);
p.setStyle(Style.FILL);
// the path
Path pth = new Path();
pth.moveTo(50, 200); // example values, modify with your own, or to improve the path
pth.lineTo(70, 140);
pth.quadTo(150, 115, 230, 140);
pth.lineTo(250, 200);
pth.quadTo(150, 165, 50, 200);
pth.close();
确保您用于路径的值在Bitmap
' 的范围内,以便您可以看到路径。