Programmatically scroll to a specific position in an Android ListView November 13, 2022 by Tarik For a direct scroll: getListView().setSelection(21); For a smooth scroll: getListView().smoothScrollToPosition(21);