Android Recyclerview Scroll To Bottom

[Solved] Android Recyclerview Scroll To Bottom | Kotlin - Code Explorer | yomemimo.com
Question : android recyclerview scroll to bottom

Answered by : hjmcoder

recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true

Source : | Last Update : Tue, 15 Sep 20

Question : android recyclerview always scroll to bottom

Answered by : puzzled-platypus-r7dt4da6culx

recyclerView.scrollToPosition(getAdapter().getItemCount()-1);

Source : https://stackoverflow.com/questions/27016547/how-to-keep-recyclerview-always-scroll-bottom | Last Update : Mon, 02 Mar 20

Answers related to android recyclerview scroll to bottom

Code Explorer Popular Question For Kotlin