DevsmartLib-Android icon indicating copy to clipboard operation
DevsmartLib-Android copied to clipboard

How I can make default scroll to the last item in the ListView?

Open christian160984 opened this issue 9 years ago • 2 comments

christian160984 avatar Jun 10 '15 10:06 christian160984

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); } }); }

http://stackoverflow.com/questions/3606530/listview-scroll-to-the-end-of-the-list-after-updating-the-list

SawMaineK avatar Jun 10 '15 11:06 SawMaineK

this not works for me

christian160984 avatar Jun 10 '15 11:06 christian160984