animation 넣는 법 / animation 적용하는 법 / 애니메이션 적용방법
View 에 alpha animation 을 추가 하는 예제이다.
AlphaAnimation animation = new AlphaAnimation(0.0f , 1.0f ) ;
animation.setFillAfter(true);
animation.setDuration(3200);
//apply the animation ( fade In ) to your LAyout
listView.startAnimation(animation);
animation.setFillAfter(true);
는 만약 animation 이 2개 이상 설정(set)을 하게 될 경우에 필요하다.
애니메이션이 끝나고 나서 애니메이션의 transformation 을 적용해야 할 때. true 를 써주면 된다.
(true if the animation should apply its transformation after it ends)
댓글 없음:
댓글 쓰기