我有一个与父布局高度匹配的RecyclerView。
我需要有一个项目作为页脚。当列表中有大量项目时,这样做不是问题。
问题是当有几件物品时它会坚持到底部并且它不足以启用滚动。所以,如果我有,说1项加上页脚项目,我该如何在RecyclerView的底部显示这个项目?
答案 0 :(得分:0)
尝试使用android:weight属性。或者,如果您使用RelativeLayout将页脚对齐到父视图的底部
答案 1 :(得分:0)
试试这个:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/places_recycler_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<YourView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
YourView是您实际为视图添加视图的视图。即使没有物品也没有物品,它总是在底部。