我最近一直在做一个嵌套的recyclerView,感谢这个post我设法解决了这个问题。但为什么我的主要背景是将内容包装到自定义布局而不是匹配父级?
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFC18D"
android:id="@+id/fLayout">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true"
card_view:cardCornerRadius="3dp">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:id="@+id/llTextHolder">
<TextView
android:text="Title"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textColor="#000000"
android:id="@+id/tvCardHeader"
android:layout_marginBottom="10dp"
android:layout_marginLeft="5dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/takwimRecyclerViewList"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v7.widget.CardView>
这是截图。
任何想法为什么会发生?
答案 0 :(得分:0)
wrapcontent意味着它将根据内容的大小包装内容,即根据内容缩小或扩展。 matchparent将与父级匹配,无论其大小如何,都不会很好。