我有一个抽屉式菜单,允许用户输入过滤器详细信息,这将更新过滤器选项下的回收者视图列表。我希望结果的回收者视图在抽屉菜单的过滤器选项下占据100%的可用空间。
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="@color/colorPrimary"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer_menu">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="350dp"
android:id="@+id/recycler_view"
android:layout_gravity="bottom">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.NavigationView>
在抽屉菜单的内容之后,我需要回收站视图占据导航视图的剩余高度
该图像显示与抽屉菜单内容重叠的列表项(白色)。
答案 0 :(得分:0)
要设置身高的地方,请使用fill-parent
。我不知道这是否是确切术语,但是已经接近了。