gpt4 book ai didi

android - 在 RecyclerView 的末尾添加空间

转载 作者:IT老高 更新时间:2023-10-28 21:35:34 26 4
gpt4 key购买 nike

我有一个带有网格布局的回收站 View 。我想要的是当用户滚动到列表末尾( see my bad mockup )时,应该有一个高度为 50dp 的空白空间,这与我的网格尺寸不同。

请注意,此空间仅在最末端可见,因为我不想更改布局。我可以使 recycerview 的边距底部为 50dp,但我不想这样做。

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

<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:scrollbars="vertical"
/>

</RelativeLayout>

最佳答案

<RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="50dp"
android:clipToPadding="false"
/>

关于android - 在 RecyclerView 的末尾添加空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29720219/

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