AlphaAnimation 썸네일형 리스트형 [안드로이드] 서서히 사라지는 효과 내기 - Animation 정의 --------------------------------------- Animation a = new TranslateAnimation(0.0f, parent.getWidth() - target.getWidth() - parent.getPaddingLeft() - parent.getPaddingRight(), 0.0f, 0.0f); //에니메이션 설정 a.setDuration(1000); a.setStartOffset(300); a.setRepeatMode(Animation.RESTART); a.setRepeatCount(Animation.INFINITE); 3. 에니메이션별 interpolator 설정 미리 정의된 안드로이드 에니메이션 설정을 얻는다. a.setInterpolator( Anima.. 더보기 이전 1 다음