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 中,如果您处于绘制大量连接线的情况(如 MapView 上的路线),请尝试使用“canvas.drawPath”。在我的一个应用程序中,我绘制了近 500 条包含 10.000 个点的路线,并使用“canvas.drawPath”而不是“canvas.drawLine”将绘制时间减少到 %30。