当我启动屏幕时,我需要使用气泡动画显示屏幕上的视图,如放大、缩小、淡入等。

最佳答案

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

09-30 11:20