在启动画面上的我的Android应用程序中,我需要将我的应用程序图标设置为旋转进度条,我该如何实现它。
任何人都可以帮我解决这些问题吗? 例如
图片是应用程序的屏幕截图,该应用程序使用环绕的图像作为进度条。我需要完全实现这个。
答案 0 :(得分:0)
请尝试以下代码进行轮换。
ImageView rotate_image =(ImageView) findViewById(R.id.your_image);
RotateAnimation rotate = new RotateAnimation(30, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(2500);
rotate_image.startAnimation(rotate);
希望这会有所帮助。感谢