Developer Geek

안드로이드 RecyclerView 최상(하)단 여백 본문

안드로이드/View

안드로이드 RecyclerView 최상(하)단 여백

devGeek 2022. 1. 21. 14:19
반응형

개요 (실행화면, 간단한 앱 설명)

RecyclerView를 이용하여 최상단과 하단에만 여백을 두려고 할 때가 있었다.
그래서 xml 파일에서 RecyclerView에 android:paddingVertical="10dp" 속성 값을 주었지만 스크롤 시 상단과 하단의 여백이 사라지지 않았다.
이를 해결하기 위해서 사용한 속성 값이 android:clipToPadding="false"이다.
android:clipToPadding="false"를 속성값으로 지정해주면 스크롤 시 상단과 하단의 여백 없이 아이템들이 보여진다.

Code - Example

activity_main.xml

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

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:clipToPadding="false"
        android:paddingVertical="10dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:listitem="@layout/list_item" />

</androidx.constraintlayout.widget.ConstraintLayout>
질문과 잘못된 점에 대해 말씀해주시는 건 언제나 환영입니다.
zero5.two4@gmail.com
반응형
Comments