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이 업데이트 되지 않아서 밀리면서 꼬임

반응형

'Android > Kotlin' 카테고리의 다른 글

Handler 이용해서 Delay 처리  (0) 2019.08.11
함수를 매개변수로 사용하기  (0) 2019.05.14
let, apply, run, also, with 구분하기  (0) 2019.04.22
anko 라이브러리 설치하기  (0) 2019.04.22
제네릭 함수  (0) 2019.04.19