안드로이드독학1 [Android Animation] 안드로이드 애니메이션 기본 사용법 (트윈 애니메이션) 안드로이드 개발 공부 Android Animation 안드로이드 애니메이션 기본 사용법 트윈 애니메이션 (Tween Animation) 1. 요약 1 2 3 4 5 6 7 8 9 10 11 // 1. 변수 선언 Animation anim_test; // 애니메이션 파일을 할당할 변수 Button btn_test; // 버튼을 할당할 변수 // 2. 변수 할당 anim_test = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.anim_test); btn_test = findViewById(R.id.btn_test) // 3. 애니메이션 실행 btn_test.startAnimation(anim_test); Colored by Color Scrip.. 2020. 5. 22. 이전 1 다음