목적: 안드로이드 애니메이션 효과 주기. AnimationUtils을 이용한다. res.anim.rotate_test.xml MainActivity.xml setContentView(R.layout.activity_main); TextView textView = findViewById(R.id.tvHello); Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotate_test); textView.startAnimation(animation); 프로젝트 첨부: 참고 자료: [1] https://developer.android.com/guide/topics/graphics/view-animation?hl=..