바르고 뜨겁게

[안드로이드] 리사이클러뷰(RecyclerView) 높이(Height) 동적 변경 본문

안드로이드

[안드로이드] 리사이클러뷰(RecyclerView) 높이(Height) 동적 변경

RightHot 2019. 2. 8. 10:05


[안드로이드] 리사이클러뷰(RecyclerView) 높이(Height) 동적 변경



특정 상황에서 RecyclerView의 높이를 android:layout_height="wrap_content" 했을때

높이가 첫번째 항목의 높이만 차지하고 모든 아이템이 표시되지 않는 경우가 있다.


그럴땐 아래와 같이 처리하면 된다.

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">

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


Comments