gpt4 book ai didi

Android RecyclerView 项目上方有空隙

转载 作者:行者123 更新时间:2023-11-29 01:08:59 25 4
gpt4 key购买 nike

根据所附图片,我在 recyclerview 项目上方遇到了一个只有一页高度的空白区域。
problem illustration of empty gap in recyclerview

这是我的 recyclerview 行布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/white">

...

</RelativeLayout>

</android.support.v7.widget.CardView>

</LinearLayout>

这是我的 Activity 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<include
android:id="@+id/list_toolbar"
layout="@layout/toolbar_list"></include>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" />

...

我还为 recyclerview 尝试了 layout_height="match_parent",但唯一的区别是第一个显示的空白间隙没有任何滚动。
为项目设置固定高度也没有改变任何东西。

最佳答案

将依赖项更新为 recyclerview-v7:25.3.1 后,我强制更改所有 row_itemslayout_height match_parentwrap_content
在这种情况下,我忘记更改 item_row 布局的 layout_height,这是我的 header 行>回收站 View

这是我的 recyclerview 标题行,应该有 layout_height="wrap_content":

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

关于Android RecyclerView 项目上方有空隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44690481/

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