Android Firebase chat RecyclerView auto scroll to bottom when new item is added

前端 未结 4 419
暗喜
暗喜 2020-12-18 01:35

im developing an android chat using firebase.

i tried to research about this problem but i cant find a good solutions.

hope someone can help me.

my p

4条回答
  •  无人及你
    2020-12-18 02:04

    adapter.registerAdapterDataObserver(object : RecyclerView.AdapterDataObserver() {
            override fun onItemRangeInserted(positionStart: Int, itemCount: Int) {
                
             CommentRv.scrollToPosition(adapter.itemCount.minus(1))
            }
        })
    

提交回复
热议问题