바르고 뜨겁게
[안드로이드] 리사이클러뷰(RecyclerView) 높이(Height) 동적 변경 본문
[안드로이드] 리사이클러뷰(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>
'안드로이드' 카테고리의 다른 글
[안드로이드] 레트로핏2 를 사용해 서버 통신하기 (0) | 2019.04.12 |
---|---|
[안드로이드] 글라이드(Glide) 아웃오브메모리 방지, 메모리 최적화 (0) | 2019.04.05 |
[안드로이드] AsyncTask 분리하기 , 서버통신 분리하기 (0) | 2019.03.28 |
안드로이드 스튜디오 자체 오류/에러 해결방법 (0) | 2019.03.27 |
[안드로이드] 키해시 얻는 방법 (debug keyhash, release keyhash, googlePlay keyhash) (5) | 2019.01.28 |
Comments