Animation 썸네일형 리스트형 [android] 제자리에서 도는 애니메이션 주소록에 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.getApplicat.. 더보기 [androd] animation 적용 Interpolator 사용 시 두가지 애니메이션을 혼용하는 방법1. animationSet.addAnimation2. setStartOffset1번의 경우 setInterpolator를 animationSet에다 해줘야됨 package sun.toy.animations; import sun.toy.R; import sun.toy.parents.ToyActivity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.view.animation.Animation; import android.view.animation.Animation.AnimationListene.. 더보기 이전 1 다음