RecyclerView末尾的空白区域

时间:2018-09-19 07:29:52

标签: java android android-recyclerview kotlin linearlayoutmanager

我使用LinearLayoutManager来水平显示RecyclerView列表

XML

    <android.support.v7.widget.RecyclerView
        android:id="@+id/dailyOffersList"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

代码

dailyOffersList.adapter = DailyOffersListAdapter(dailyOffer)
dailyOffersList.layoutManager = LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)

是项目的XML,宽度为wrap_content https://codeshare.io/5XnldM

但是列表的末尾有空白,并且只有在水平放置时才会发生这种情况

enter image description here

最后

enter image description here

1 个答案:

答案 0 :(得分:0)

将xml中的match_parent更改为wrap_content

match_parent应该充满整个屏幕。