우찬쓰 개발블로그

RecyclerView 상단과 하단에 padding 옵션 (android:clipToPadding ) 본문

안드로이드/안드로이드 개발

RecyclerView 상단과 하단에 padding 옵션 (android:clipToPadding )

이우찬 2019. 3. 15. 11:07
반응형

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/test_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="9dp"
android:paddingBottom="9dp"/>


RecyclerView를 다룰때 padding을 그냥 주게되면 스크롤시 아래처럼 padding 공간만큼 가려지게 된다.


   




하지만 만약 원하는 요구사항이 RecyclerView 내부에서의 padding이고 스크롤시에는 padding이 없는 것이라면 방법이 있다.


<androidx.recyclerview.widget.RecyclerView
android:id="@+id/test_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingTop="9dp"
android:paddingBottom="9dp"/>


RecyclerView에 android:clipToPadding="false"로 옵션을 바꿔주면 다음과 같이 변한다.



   


스크롤시에는 padding이 사라진 것을 볼 수 있다.

반응형
Comments