在Android中制作拉伸动画

时间:2017-11-15 11:26:57

标签: android android-layout android-animation

我需要Android中的Animate Splash Screen,我在屏幕的中心有一个圆圈,我想要Stretch以动画的方式填充整个屏幕。我该如何制作?

1 个答案:

答案 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)的视图。