2011-03-21 6 views

답변

4

소용돌이의 경우 자신 만의 애니메이션을 만들어야하지만 Rotate하려면 ImageView에 애니메이션을 적용하면됩니다.

RotateAnimation animation = new RotateAnimation(0f, 360f); 
anim.setRepeatCount(Animation.INFINITE); 
anim.setDuration(1000); 

ImageView imageView= (ImageView) findViewById(R.id.splash_screen); 
imageView.startAnimation(animation); 

는 애니메이션을 사용자 정의하는 데 사용할 수있는 AnimationRotateAnimation 다른 방법이 있습니다.