互いに積み重ねられた 3 つのビュー (A、B、および C) があります。ボタンをクリックすると、2 つのビュー (B と C) がビュー 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 アニメーションです。
2 つのビューが下にアニメーション化されるときにレイアウトの高さを増やす方法について何か提案はありますか?