animatorset 썸네일형 리스트형 [Android] AnimatorSet 이용 여러 Animation을 한번에 돌리기 위해선, 개별적으로 같은 시간에 start를 해봤자 동시에 진행이되지 않습니다.!!! 이럴 경우, AnimatorSet을 이용하여 start를 시키는게 바람직 합니다. 이건 참고용으로 두 View를 Scale로 교환 되는 함수 입니다. public static void exchangeScaleAnimation(final View scaleOnView, final View scaleOffView, int duration) { ObjectAnimator scaleOnX = ObjectAnimator.ofFloat(scaleOnView, "scaleX", 1f); ObjectAnimator scaleOnY = ObjectAnimator.ofFloat(scaleOnView.. 더보기 이전 1 다음