2011-03-07 4 views

답변

3

먼저처럼 inflate() 방법 다음 설정을 반환보기 애니메이션을 호출

View view = ((ViewStub) findViewById(R.id.stub_view)).inflate(); 
Animation animation = AnimationUtils.makeInAnimation(this, true); 
animation.setDuration(300); 
view.startAnimation(animation); 
관련 문제