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 |
Tags
- Retrofit with MVVM
- DataBinding
- viewBinding
- java
- 다이얼로그 프래그먼트
- 인텐트란?
- 프로그래머스
- programmers
- dialog fragment
- Android
- 위치정보확인
- Retrofit Kotlin
- 다이얼로그 크기조절
- 스크롤뷰 자식 뷰 높이 동적조절
- dialog resize
- ScrollView with ConstraintLayout
- 리사이클러뷰
- NestedScrollView
- 쉐어드
- location System
- 레트로핏2
- recyclerview
- 안드로이드
- 레트로핏 MVVM
- 뷰바인딩
- lifecycleScope
- 데이터바인딩
- 레트로핏 코틀린
- dialogfragment singleton
- ScrollView Child View Height Programmatically
Archives
- Today
- Total
안드로이드 세계
[Android] RecyclerView 스크롤시 설정 해제되는 현상(체크박스, 백그라운드색상 등)해결법 본문
안드로이드(Android)/코틀린(Kotlin)
[Android] RecyclerView 스크롤시 설정 해제되는 현상(체크박스, 백그라운드색상 등)해결법
리안94 2021. 2. 18. 15:19유저 아이디, 유저 이름, 체크박스를 가지는 리사이클러뷰를 간단하게 구성해본다.
이번 포스팅에는 편하게 만들기 위해서 뷰 바인딩을 사용하였다.
뷰 바인딩이란?
간단하게 버튼을 누르면 리사이클러뷰 아이템이 추가되고, 체크박스를 선택할 수 있는 기능이 있는 것이다.
(샘플이기 때문에 삭제 구현은 하지 않았다.)
다음과 같이 구성한다.
메인
class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
private var userRecyclerViewAdapter: UserRecyclerViewAdapter? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
setUpRecyclerView()
}
private fun setUpRecyclerView(){
binding.userRecyclerView.apply {
userRecyclerViewAdapter = UserRecyclerViewAdapter()
adapter = userRecyclerViewAdapter
layoutManager = LinearLayoutManager(this@MainActivity)
}
addItem()
}
private fun addItem(){
binding.btnAddItem.setOnClickListener {
userRecyclerViewAdapter?.addUserItems(User("User", "바보"))
}
}
}
메인 xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_add_item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/add"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/user_recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/btn_add_item"
app:layout_constraintBottom_toBottomOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
유저 데이터 클래스
data class User(val userId: String, val userName: String)
리사이클러뷰 어뎁터
class UserRecyclerViewAdapter : RecyclerView.Adapter<RecyclerView.ViewHolder>(){
private val userItems = arrayListOf<User>()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder
= UserItemViewHolder(ItemUserBinding.inflate(LayoutInflater.from(parent.context), parent, false))
override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
if (holder is UserItemViewHolder)
holder.bind(userItems[position])
}
override fun getItemCount(): Int = if (userItems.isNullOrEmpty()) 0 else userItems.size
fun addUserItems(user: User){
userItems.add(user)
notifyItemInserted(userItems.size-1)
}
inner class UserItemViewHolder(private val binding: ItemUserBinding) : RecyclerView.ViewHolder(binding.root){
fun bind(userItem: User) = with(binding){
tvUserId.text = userItem.userId
tvUserName.text = userItem.userName
checkboxUser.setOnClickListener {
Log.e("CheckBox", "$adapterPosition ${checkboxUser.isChecked}")
}
}
}
}
리사이클러뷰 아이템 레이아웃
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="90dp"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:id="@+id/tv_userId"
android:gravity="center"
android:textSize="16sp"
android:textStyle="bold"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintWidth_percent="0.3"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<TextView
android:id="@+id/tv_userName"
android:gravity="center"
android:textSize="16sp"
android:textStyle="bold"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintWidth_percent="0.5"
app:layout_constraintLeft_toRightOf="@id/tv_userId"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<CheckBox
android:id="@+id/checkbox_user"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toRightOf="@id/tv_userName"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
이렇게 구성하면 클릭 시 체크가 되지 않은 체크박스는 체크가 되고, 체크가 된 체크박스를 클릭하면 체크가 풀리게 된다.
(로그로 아이템 포지션과 체크 여부를 확인한다.)
완벽하게 구현된 것 같지만, 스크롤이 가능할 정도로 아이템을 생성한 뒤 스크롤을 해보면 중구난방으로 체크가 된다.(풀린 것도 있고, 체크하지 않았는데 체크가 된 것도 있다.)
이는 리사이클러뷰가 아이템을 스크롤하면 재생성하기 때문에 생긴 문제이다.
이것을 해결하기 위해 두 가지 방법이 존재한다.(더 있는지는 잘 모르겠다.)
- sparseBooleanArray를 활용한다.
- position과 상태를 저장할 변수를 가진 데이터 클래스를 이용한다.
첫 번째의 방법으로 수정을 하게 되면 어뎁터는 다음과 같이 변경된다.
class UserRecyclerViewAdapter : RecyclerView.Adapter<RecyclerView.ViewHolder>(){
private val userItems = arrayListOf<User>()
private val checkboxStatus = SparseBooleanArray()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder
= UserItemViewHolder(ItemUserBinding.inflate(LayoutInflater.from(parent.context), parent, false))
override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
if (holder is UserItemViewHolder)
holder.bind(userItems[position])
}
override fun getItemCount(): Int = if (userItems.isNullOrEmpty()) 0 else userItems.size
fun addUserItems(user: User){
userItems.add(user)
notifyItemInserted(userItems.size-1)
}
inner class UserItemViewHolder(private val binding: ItemUserBinding) : RecyclerView.ViewHolder(binding.root){
fun bind(userItem: User) = with(binding){
tvUserId.text = userItem.userId
tvUserName.text = userItem.userName
checkboxUser.isChecked = checkboxStatus[adapterPosition]
checkboxUser.setOnClickListener {
if (!checkboxUser.isChecked)
checkboxStatus.put(adapterPosition, false)
else
checkboxStatus.put(adapterPosition, true)
notifyItemChanged(adapterPosition)
}
}
}
}
두 번째 방법으로 수정하면 다음과 같이 변경된다.
상태를 저장할 데이터 클래스를 하나 만든다.
data class UserCheckStatus(val position: Int, var isChecked: Boolean)
어뎁터 클래스를 다음과 같이 수정한다.
class UserRecyclerViewAdapter : RecyclerView.Adapter<RecyclerView.ViewHolder>(){
private val userItems = arrayListOf<User>()
private val userCheckBoxStatus = arrayListOf<UserCheckStatus>()
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder
= UserItemViewHolder(ItemUserBinding.inflate(LayoutInflater.from(parent.context), parent, false))
override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) {
if (holder is UserItemViewHolder)
holder.bind(userItems[position], userCheckBoxStatus[position])
}
override fun getItemCount(): Int = if (userItems.isNullOrEmpty()) 0 else userItems.size
fun addUserItems(user: User){
userItems.add(user)
userCheckBoxStatus.add(UserCheckStatus(userItems.size - 1, false))
notifyItemInserted(userItems.size-1)
}
inner class UserItemViewHolder(private val binding: ItemUserBinding) : RecyclerView.ViewHolder(binding.root){
fun bind(userItem: User, userStatus: UserCheckStatus) = with(binding){
tvUserId.text = userItem.userId
tvUserName.text = userItem.userName
checkboxUser.isChecked = userStatus.isChecked
checkboxUser.setOnClickListener {
userStatus.isChecked = checkboxUser.isChecked
notifyItemChanged(adapterPosition)
}
}
}
}
이렇게 변경하게 되면 아이템 상태변화(백그라운드 색상 및 체크박스 등등) 후에 스크롤을 하여도 값이 변경되지는 않는다.
'안드로이드(Android) > 코틀린(Kotlin)' 카테고리의 다른 글
[Android] E/libc: Access denied finding property "ro.serialno" 에러시 대처법 (0) | 2021.04.20 |
---|---|
[Android] 버튼 백그라운드 변경문제 (0) | 2021.02.19 |
[Android] DataBinding 편하게 사용하기(BaseActivity, BaseFragment) (2) | 2021.01.23 |
[Android] Recycler View - Step 4 (0) | 2021.01.19 |
[Android] Recycler View - Step 3 (0) | 2021.01.16 |
Comments