채팅 화면을 구현하는 경우 recyclerView 를 맨 아래로 스크롤 해야할 필요가 있다.
아래 코드 참조.
binding.recyclerMessageView.layoutManager = LinearLayoutManager(this).apply {
this.stackFromEnd = true // 가장 최근의 대화를 표시하기 위해 맨 아래로 정렬.
this.reverseLayout = true // data들을 반대로 쌓아올림.
}
반응형
'프로그래밍 > android' 카테고리의 다른 글
[android studio] multiple build operations failed 오류 해결 (0) | 2024.05.09 |
---|---|
[kotlin] 현재 위치의 함수명, 라인번호 가져오기 (0) | 2024.03.27 |
[kotlin] 안드로이드에서 REST API 서버 구현 (NanoHTTPd) (0) | 2024.03.10 |
[kotlin] 뒤로가기 두 번 눌러 종료하는 코드 (0) | 2022.01.08 |
wireless debugging on Android 11 (0) | 2021.12.18 |