为什么RelativeLayout height设置为wrap_content,如果其主子高度为match_parent,则取整个屏幕高度,但设置为wrap_content的LinearLayout高度的高度与其内部子高度一样多,即使主子高度为match_parent。也可以任何一个解释详细?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="@dimen/recyc_image_height"
android:src="@drawable/image" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:text="Taylor Swift"
android:gravity="center"
android:layout_marginTop="10dp"
android:textSize="18sp"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
但是线性布局,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="@dimen/recyc_image_height"
android:src="@drawable/image" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:text="Taylor Swift"
android:gravity="center"
android:layout_marginTop="10dp"
android:textSize="18sp"/>
</RelativeLayout>
</android.support.v7.widget.CardView>