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 中绘制了一个分区圆。我想知道有什么方法可以旋转那个圆圈。我从从以下链接获得的代码中绘制了圆圈,并对该代码进行了更改以在每个弧中绘制文本: 如何在 android 中绘制带有分区的圆圈?
谁能帮我旋转那个圆圈。
问候,
你可以旋转你canvas的:
canvas
canvas.save(); canvas.rotate(angleInDegrees); // Do your drawing canvas.restore();
如果您想绘制其他东西但不旋转,则必须保存并恢复您的画布。