Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Android 上构建一个简单的绘图应用程序,我想知道是否有人知道如何添加以下元素:
谢谢!
看看这里的箭头:
对于简单的行:
PathEffect myPathEffect = new PathEffect(); paint.setPathEffect(myPathEffect);
在此处阅读文档。
但是,鉴于您的样本,我认为您将不得不逐点构建路径。无论你想达到什么效果,你都必须做一些数学来绘制你的线条。鉴于其不规则性,您提供的波浪线示例绝非“简单”。