Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
christian160984 opened this issue Jun 10, 2015 · 2 comments
Open

Comments

@christian160984
Copy link

No description provided.

@SawMaineK
Copy link

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

@christian160984
Copy link
Author

this not works for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants