Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何用一些动画膨胀视图?
首先调用该inflate()方法,然后在返回的视图上设置动画,如下所示:
inflate()
View view = ((ViewStub) findViewById(R.id.stub_view)).inflate(); Animation animation = AnimationUtils.makeInAnimation(this, true); animation.setDuration(300); view.startAnimation(animation);