gpt4 book ai didi

Android RecyclerView重力问题

转载 作者:行者123 更新时间:2023-11-29 00:53:53 26 4
gpt4 key购买 nike

我正在使用 DrawerLayout 来显示 NavigationDrawer,在那个 A NavigationView 中,xml 代码是:

MyDrawerLayout.xml

<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">

<include layout="@layout/layout_navigation_list" />

</android.support.design.widget.NavigationView>

layout_navigation_list.xml

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical">

<include
android:id="@+id/headerLayout"
layout="@layout/nav_header_dash_nav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_gravity="top"
android:gravity="top" />

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerNav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/headerLayout"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:background="@color/white"
android:foregroundGravity="bottom" />

</RelativeLayout>

ScreenImage

RecyclerView 中,我只有 3 个项目要显示,它们在 RecyclerView 布局的顶部对齐,这是我不想要的。因此我的问题是,如何将这些项目发送到 RecyclerView 的底部(就像图中所示)。

最佳答案

relativeLayout 中设置 match_parent 而不是 wrap_content 字段 layout_height :

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">

关于Android RecyclerView重力问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56721412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com