목록Android (1)
RamaFam
Animation 에서의 interpolator
구글 샘플 프로젝트animation > interpolators 텍스트 뷰를 좌에서 우로 에니메이션 시키는 예제.. 1. 레이아웃중 에니메이션 시킬 뷰와 부모 뷰를 얻는다.final View target = findViewById( R.id.target );final View parent = (View) target.getParent(); 2. 이동 에니메이션 객체를 생성한다. Animation a = new TranslateAnimation(0.0f,parent.getWidth() - target.getWidth() - parent.getPaddingLeft() - parent.getPaddingRight(), 0.0f, 0.0f); //에니메이션 설정a.setDuration(1000);a.setSta..
카테고리 없음
2018. 8. 28. 16:47