查看动画到底部时自动增加布局高度和宽度

时间:2016-01-31 18:57:37

标签: android-layout height android-scrollview android-relativelayout android-layoutparams

我有三个视图(A,B和C),它们相互堆叠。因此,当我单击按钮时,两个视图(B和C)从View A后面生成动画并向下滚动到底部。现在我的动画工作正常,但视图B和C正在延伸出屏幕,我的屏幕高度没有增加。 这是我的layout.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    android:animateLayoutChanges="true">

    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/trips_menu_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorBackgroundGrey">

        <android.support.v7.widget.CardView
            xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:id="@+id/layout_id_1"
            android:layout_margin="8dp"
            card_view:contentPadding="8dp"
            card_view:cardElevation="16dp">

        </android.support.v7.widget.CardView>

        <android.support.v7.widget.CardView
            xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:id="@+id/layout_id_2"
            android:layout_marginLeft="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginBottom="8dp"
            android:layout_marginTop="40dp"
            card_view:contentPadding="8dp"
            card_view:cardElevation="2dp">

        </android.support.v7.widget.CardView>

        <android.support.v7.widget.CardView
            xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="300dp"
            android:id="@+id/layout_id_3"
            android:layout_marginLeft="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginBottom="8dp"
            android:layout_marginTop="40dp"
            card_view:contentPadding="8dp"
            android:visibility="invisible">

        </android.support.v7.widget.CardView>

    </RelativeLayout>

</ScrollView>

我的动画是简单的翻译Y动画。

当两个视图动画到底部时,有关如何增加布局高度的任何建议吗?

0 个答案:

没有答案