Friday, November 9, 2012

Android ExpandableListView Page Scroll From Top

If you are using ExpandableList View , Sometimes page will be automatically scroll to middle of the list..will not be shown from top of the screen ..to resolve it..



scrollviewid.post(new Runnable() {
public void run() {
scroll.scrollTo(0, 0);
}
});

No comments:

Post a Comment