我想在图像视图上设置一个角度并随机生成该角度,并将图像视图的锚点设置为 android 屏幕的中心。之后,我希望计算机在该角度从屏幕中间到末端的一定距离生成一个点,并设置一个按钮出现在那里。我不确定eclipse是否有一种快速的自动方式来做到这一点。
谢谢。
我添加了一张图片来帮助。我希望箭头指向一个随机角度,然后一个按钮出现在该角度但在圆圈之外(圆圈是虚构的,只是表明它需要出现在距中心一定距离之外。
您可以使用setRotation
方法在 android 中旋转视图。
image.setRotation(90); // instead of 90 you can give your generated value.
// But make sure the value should be float.
image.setRotationX(90); // if you want rotate depends x axis
image.setRotationY(90); // if you want rotate depends y axis
也看看这里
我希望这能帮到您。