주소록에 sync 맞추기 위해 작성한 애니메이션
Animation anim = new RotateAnimation(360, 0, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
anim.setDuration(1000); anim.setStartOffset(0); // anim.setFillEnabled(true); // animation 종료 후, 뷰의 위치를 유지하는 것을 컨트롤 할것인가 // anim.setFillAfter(true); // animation 종료 후, 뷰의 위치를 유지하겠는가 anim.setInterpolator(AnimationUtils.loadInterpolator(mOwnerActivity.getApplicationContext(), android.R.anim.decelerate_interpolator)); imgSyncContact.setBackgroundResource(R.drawable.btn_youtube_sync_s); imgSyncContact.setAnimation(anim);
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
[android] TextView 부분색상 (0) | 2013.04.04 |
---|---|
[android] 연속적 이미지 보여주기(gif효과) (0) | 2013.03.07 |
[androd] animation 적용 (0) | 2013.01.25 |
[android] toast text 위치 (0) | 2013.01.16 |
[android] db asset경로에서 참조하기 (0) | 2012.12.07 |