gpt4 book ai didi

android - 在 RecyclerView 底部添加空格

转载 作者:行者123 更新时间:2023-12-05 00:13:16 44 4
gpt4 key购买 nike

并且应用程序有一个不断增长的项目列表(回收站 View )。它的底部还有一个按钮,如果列表足够长,它将阻碍列表。因此,我希望列表底部有一个空白区域,以便用户可以一直向下滚动,以便按钮仅挡住空白区域。可能不太容易想象我想要做什么,所以这里有一些图片:
short list
long list
我想要的是这样的:
solution
到目前为止,我想出的唯一解决方案是在回收站 View 中添加填充。但问题在于,当用户一直向下滚动时,我只希望空白区域出现在列表的底部。如果我在回收站 View 中添加填充,即使列表下方有项目,也会出现空白区域。
所以我所拥有的是:
hidden items
我也尝试在底部添加一个“Space”对象,但它实际上并没有占用任何空间(我猜android只使用“Space”在对象之间插入空间,而不是在没有对象分离的情况下)。
这是我的xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.MainActivity">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/linearLayout">

<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="?attr/actionBarTheme"
android:minHeight="?attr/actionBarSize"
android:id="@+id/toolbar" />

<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/recyclerView"
android:paddingBottom="72dp">

</androidx.recyclerview.widget.RecyclerView>

</LinearLayout>

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:src="@drawable/plus_thick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:id="@+id/fab"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:contentDescription="Add item" />

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

您需要设置clipToPaddingfalse

        <androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="72dp"
android:clipToPadding="false"/>

关于android - 在 RecyclerView 底部添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67174652/

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