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);