在中心 - Android中旋转图像轴

Dro*_*and 6 android image rotation

我想在中心旋转一个图像旋转.我想在旋转图像时使用此功能,我需要将动态文本作为菜单加载.像慢跑.任何人都可以帮助我旋转图像

Eri*_*vik 29

要旋转图像,您可以执行以下操作:

RotateAnimation rotate = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);

ImageView image = findViewById(my image);
image.setAnimation(rotate);

rotate.start();
Run Code Online (Sandbox Code Playgroud)

这将使图像从0度旋转360度.您也可以设置持续时间:

rotate.setDuration( 500 ); // milliseconds
Run Code Online (Sandbox Code Playgroud)