Android/Kotlin

RecyclerView에서 삭제 애니매이션

lipnus 2019. 7. 7. 21:27
반응형


MyAdapter.kt

fun deleteItem(position: Int){
items.removeAt(position)
notifyItemRemoved(position)
notifyItemRangeChanged(position, items.size)

}



notifyDataSetChanged()대신 notifyItemRemoved()쓴다.


notifyItemRangeChanged()안하면 뒤쪽 애들의 position이 업데이트 되지 않아서 밀리면서 꼬임

반응형