我想要一个 imagebutton 中心屏幕,可以使用某种动画打开开始“增长”以平滑地填充整个屏幕。达到完整尺寸后,反转动画并恢复到原始尺寸?
有任何想法吗?这甚至可能吗?
我想要一个 imagebutton 中心屏幕,可以使用某种动画打开开始“增长”以平滑地填充整个屏幕。达到完整尺寸后,反转动画并恢复到原始尺寸?
有任何想法吗?这甚至可能吗?
这是一个示例,可帮助您开始使用此布局为动画创建 xml 文件 res/anim/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 );
在此处了解有关动画的更多信息