将应用程序图标设置为android中的进度条

时间:2015-06-03 04:20:45

标签: android android-studio progress-bar

在启动画面上的我的Android应用程序中,我需要将我的应用程序图标设置为旋转进度条,我该如何实现它。

任何人都可以帮我解决这些问题吗? 例如https://www.dropbox.com/s/a8ilgjn6fzxntv2/10529664_833402360077760_131396055_n.jpg?dl=0

图片是应用程序的屏幕截图,该应用程序使用环绕的图像作为进度条。我需要完全实现这个。

1 个答案:

答案 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);

希望这会有所帮助。感谢