我的看法是這樣的:佈局高度問題
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RecyclerView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
/>
</LinearLayout>
它會給50dp到TextView
和地區的其餘RecyclerView
。 但是,如果RecyclerView
中的項目小於1或2,那麼它應縮小到其子視圖的高度,其他方式的行爲與佈局指定的行爲相同。任何人都可以幫忙嗎?
爲什麼不使用的RelativeLayout和使用屬性layout_below?或者你不想要那個? –
感謝@HusseinElFeky – Charu