5

如何用一些动画膨胀视图?

4

1 回答 1

6

首先调用该inflate()方法,然后在返回的视图上设置动画,如下所示:

View view = ((ViewStub) findViewById(R.id.stub_view)).inflate();
Animation animation = AnimationUtils.makeInAnimation(this, true);
animation.setDuration(300);
view.startAnimation(animation);
于 2011-06-01T17:04:11.170 回答