3

我想实现拖放android 4.1因为我想围绕中心点以圆形方式放置我的图标图像视图。(使用图像视图我可以完美地实现拖放,位图有点复杂)

我尝试使用位图和绘画,但它不像我们可以在 android 4.1 中那样平滑。

Is there any method or way in android 4.1 by which i can place the imageviews in circular manner by giving the radius of the circle and number of sections it will get divide, its like a math question ?

查看此链接以进行拖放。

提前感谢您的帮助。

4

1 回答 1

2

我已经通过在 android 中使用Math来实现。

我正在分享我的一部分代码:

double xOffset = currentRadius * Math.cos(Math.toRadians(d));
double yOffset = currentRadius * Math.sin(Math.toRadians(d));

希望对你有帮助。请关注此处以了解更多信息。

于 2012-10-10T10:00:24.840 回答