我有一个布局
<ImageView
android:id="@+id/slide_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/bg_homeslide_1"/>
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
..
>
<Button
android:id="@+id/login_button"
.../>
</RelativeLayout>
</RelativeLayout>
我正在尝试为上面的 ImageView 设置动画。它的过渡是从下往上。但问题是当 imageview 动画时,页脚布局与图像重叠。我需要图像视图来为所有视图设置动画。请帮忙