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 的图像视图内的画布上绘制正弦波,我需要将它绘制在图像视图的中心?
请问你能帮帮我吗?
您可以使用Canvas.drawPath在画布上绘制任何路径。在这种情况下,路径就是您的正弦,因此您必须逐步遍历正弦的函数值,并使用小增量将每个点添加到路径中Path.lineTo。