当我启动屏幕时,我需要使用放大,缩小,淡入等气泡动画在屏幕上显示视图。
答案 0 :(得分:16)
在onCreateView()
中,只需按getDecorView()
查看整个布局,然后应用以下动画代码:
ScaleAnimation scale = new ScaleAnimation(0, 1, 0, 1, ScaleAnimation.RELATIVE_TO_SELF, .5f, ScaleAnimation.RELATIVE_TO_SELF, .5f);
scale.setDuration(300);
scale.setInterpolator(new OvershootInterpolator());
将动画应用于视图:
yourView.startAnimation(scale);