我有一个Fragment
(使用支持库,是的,我已经阅读了这篇文章)。在这个片段中,我在(B)中有一个ImageButton
(A TableRow
)。我正在尝试制作动画A
- 扩展它,然后再次缩小它。这是使用的动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator" >
<scale
android:duration="250"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="1"
android:repeatMode="reverse"
android:toXScale="1.25"
android:toYScale="1.25"
android:zAdjustment="top"/>
</set>
它的工作原理是在A
增长时被B
. 因此,android:zAdjustment
似乎没有任何效果。(B
此布局是必需的,因此我无法在动画期间更改/删除它。)
问:如何在所有其他视图之上为我的按钮设置动画?