Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 안드로이드
- 코틀린
- Behavior
- onMeasure
- View
- Algorithm
- DataBinding
- AppBarLayout
- LiveData
- recyclerview
- room
- lifecycle
- hilt
- notification
- Android
- 알림
- Coroutine
- sqlite
- CustomView
- CoordinatorLayout
- Navigation
- ViewModel
- CollapsingToolbarLayout
- onLayout
- activity
- 알고리즘
- BOJ
- HTTP
- 백준
- kotlin
Archives
- Today
- Total
개발일지
Android in A..Z - RecyclerView (Layout Manager) 본문
Layout Manager
RecyclerView에 Layout을 관리하는 클래스이다.
종류
- LinearLayoutManager : 수평, 수직으로 ViewHolder를 표현한다.
- GridLayoutManager : 격자판 형식으로 ViewHolder를 표현한다.
- StaggeredGridLayoutManager : 높이가 불규칙한 격자판 형식으로 ViewHolder를 표현한다.
- FlexBoxLayoutManager : 반응형으로 ViewHolder를 표현한다.
LinearLayoutManager
Programming
recyclerview.layoutManager = LinearLayoutManager(context) // 수직
recyclerview.layoutManager = LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false) // 수평
XML
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
GridLayoutManager
Programming
recyclerview.layoutManager = GridLayoutManager(context, spanCount)
XML
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="3" />
StaggeredGridLayoutManager
FlexBoxLayoutManager
구글에서 만든 반응형 LayoutManager이다.
Git (예제코드)
github.com/KangTaeJong98/Example/tree/main/Android/RecyclerView
이미지 참고
StaggeredGridLayoutManager
FlexBoxLayoutManager
'Android (안드로이드) > RecyclerView' 카테고리의 다른 글
Android in A..Z - RecyclerView (setHasStableIds) (0) | 2021.01.10 |
---|---|
Android in A..Z - RecyclerView (ItemDecoration) (0) | 2021.01.10 |
Android in A..Z - RecyclerView (AdapterDataObserver) (0) | 2021.01.10 |
Android in A..Z - Recyclerview (ItemTouchHelper) (0) | 2021.01.10 |
Android in A..Z - RecyclerView (기본) (0) | 2021.01.10 |
Comments