Android - ImageView 그래픽이 회전하는 애니메이션(예: 오디오 재생의 회전)

437 단어 개발 코드
1.res 다음에 애니메이션 폴더 만들기 anim 2.anim 폴더 아래에 이름을 설정합니다:rotaterepeat 애니메이션 xml 파일
  
   
        
     

3. Activity 파일 아래
ImageView animationimg= (ImageView) findViewById(R.id.animationimg)
Animation mAnimation = AnimationUtils.loadAnimation(this, R.anim.rotaterepeat);
animationimg.startAnimation(mAnimation);

좋은 웹페이지 즐겨찾기