我需要Android中的Animate Splash Screen,我在屏幕的中心有一个圆圈,我想要Stretch以动画的方式填充整个屏幕。我该如何制作?
答案 0 :(得分:0)
它的调用Scale Animation你可以这样做
ScaleAnimation scal=new ScaleAnimation(0, 1f, 0, 1f, Animation.RELATIVE_TO_SELF, (float)0.5, Animation.RELATIVE_TO_SELF, (float)0.5);
scal.setDuration(1000);
scal.setFillAfter(true);
YOUR_VIEW.setAnimation(scal);
YOUR_VIEW 是您要执行动画的xml(如ImageView)的视图。