gpt4 book ai didi

android - 为什么 drawPath 不起作用?

转载 作者:太空狗 更新时间:2023-10-29 15:32:09 24 4
gpt4 key购买 nike

我有 drawpath 的这段代码,但没有显示任何内容,我不明白为什么。

//i move the path's starting point somewhere up here to a point.
//get center x and y are the centers of a picture. it works when i
//do drawline and store the different starting points
//but i want it to look continuous not like a lot of different
//lines

path.lineTo(a.getCenterX(), a.getCenterY());
path.moveTo(a.getCenterX(), a.getCenterY());


p.setStrokeWidth(50);
p.setColor(Color.BLACK);
canvas.drawPath(path,p);

drawpath image

提前致谢

最佳答案

一个新的 Paint 实例只填充路径。

描边路径,设置绘画风格:

paint.setStyle(Paint.Style.STROKE);

如果您绘制的背景是黑色,请更改颜色,以便您可以看到油漆:

paint.setColor(Color.RED);   // something other than the background color

可选:

paint.setStrokeWidth(10);  // makes the line thicker

关于android - 为什么 drawPath 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7029870/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com