答案 0 :(得分:1)
将图像设置为ImageView
并执行此操作。
loadingIcon = (ImageView) findViewById(R.id.splash_loader);
RotateAnimation anim = new RotateAnimation(0.0f, 360.0f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
0.5f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(500);
loadingIcon.startAnimation(anim);
当你需要停止时,请执行此操作
loadingIcon.setAnimation(null);
注意:如果您需要在多个位置使用它,请创建一个自定义视图,使用此代码扩展ImageView
并在任何您想要的地方使用。