Mobile Programming/Android
listview 제일 하단으로 스크롤하기
bboks.net
2014. 6. 25. 15:03
private void scrollMyListViewToBottom() { myListView.post(new Runnable() { @Override public void run() { // Select the last row so it will scroll into view... myListView.setSelection(myListAdapter.getCount() - 1); } }); }
[출처] Listview Scroll to the end of the list after updating the list