0

我有一个布局

<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 动画时,页脚布局与图像重叠。我需要图像视图来为所有视图设置动画。请帮忙

4

1 回答 1

0

您可以遵循编写代码(xml)的层次结构,以便先编写延期图像视图,然后以此类推,请参阅

从布局后面动画列表视图

于 2013-07-04T17:39:04.430 回答