Animate imageButton调整大小以适应屏幕

时间:2012-12-27 20:12:06

标签: android imagebutton

我希望有一个图像按钮中心屏幕,打开“增长”以使用某种动画平滑地填充整个屏幕。达到完整尺寸后,反转动画并恢复原始尺寸?

任何想法?这有可能吗?

1 个答案:

答案 0 :(得分:2)

这是一个使用此布局开始为动画创建xml文件的示例,   RES /动画/ animate.xml

       <?xml version="1.0" encoding="utf-8"?>
        <set xmlns:android="http://schemas.android.com/apk/res/android" 
        android:shareInterpolator="false">
   <scale
    android:interpolator="@android:anim/accelerate_decelerate_interpolator"
    android:fromXScale="1.0"
    android:toXScale="2.0"
    android:fromYScale="1.0"
    android:toYScale="2.0"
    android:repeatMode="reverse"
    android:duration="700" />
    </set>

并在启动动画的方法中使用此

 Animation scaleAnim = AnimationUtils.loadAnimation(this, R.anim.animate);
view.startAnimation( scaleAnim ); 

点击Animations

了解有关动画的详情