gpt4 book ai didi

android - Canvas 线故障

转载 作者:行者123 更新时间:2023-11-29 01:54:59 24 4
gpt4 key购买 nike

当使用路径在 Canvas 上画一条线时,我遇到了如下图所示的小故障......我是 Android 开发的新手......我知道我犯了一些愚蠢的错误我不知道它是什么...... .如果有人有想法帮助我..谢谢

enter image description here

enter image description here

我的路径代码是

 path.moveTo((this.pos/2),0);
path.lineTo((this.pos/2),25);
path.lineTo(this.pos,25);
path.close();
canvas.drawPath(path, ppaint);

最佳答案

你可以只使用canvas.drawLine(this.pos/2, 25, this.pos, 25, ppaint)。 drawPath() 在您的代码中按预期工作;)

关于android - Canvas 线故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15744623/

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