使用动画我展开 ImageView,但在缩放后与其他视图重叠。有什么方法可以更新我在活动 xml 文件中定义的布局属性?layout_toRightOf
即我有一些像我想在动画之后应用的属性。
有我的代码:
动画片:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:fillEnabled="true">
<scale
android:duration="500"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="2.0"
android:toYScale="2.0" />
</set>
应用动画:
Animation shrinkAnimation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.shrink_animation);
someView.startAnimation(shrinkAnimation);