gpt4 book ai didi

android - 在Android中创建虚线效果轮廓

转载 作者:行者123 更新时间:2023-12-02 15:15:06 25 4
gpt4 key购买 nike

我使用 Style.Stroke 绘制了一个圆圈,并为绘制对象提供了 dasheffect,但问题是破折号的形状是正方形/矩形。

我希望实现的是虚线形状为圆形/点。

这可能吗?

我尝试使用破折号值,但它只是调整每个破折号的大小和间隙,而不是它的形状。

这是我到目前为止所写的内容:

paintCircleDotted = new Paint();
paintCircleDotted.setStyle(Style.STROKE);
paintCircleDotted.setStrokeWidth(strokeWidth);
dashPath = new DashPathEffect(new float[] { 10, 5 }, (float) 1.0);
paintCircleDotted.setPathEffect(dashPath);

最佳答案

用途:

Paint.setStrokeCap(Cap.ROUND)

关于android - 在Android中创建虚线效果轮廓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18228532/

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