리사이클러뷰를 만드는 도중에 아래와 같은 오류가 발생했다
아래 오류는 RecyclerView에 Layout Manager를 설정하지 않아서 발생하는 오류다
RecyclerView 레이아웃에 layoutManager 코드를 추가해주면 오류가 해결된다
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="150dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:listitem="@layout/community_list_item"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
'개발 노트 > Kotlin' 카테고리의 다른 글
Custom Dialog 만들기 (1) | 2024.02.21 |
---|---|
RecyclerView 클릭 이벤트 처리 (0) | 2024.02.21 |
[Kotlin] EditText 위에서부터 작성 (0) | 2024.02.16 |
[Kotlin]BottomNavigationView 애니메이션 없애기 , 아이콘 크기 조절 (1) | 2024.02.16 |
[Kotlin]BottomNavigationView 글자크기 조절 (0) | 2024.02.15 |