Search code examples
androidandroid-scrollviewandroid-scrollbar

How to bring scroll bar/view in top position?


scrollbar

tableLayout My view data /tableLayout

/scrollbar

I showed the data.. when I m in last row of view, once my UI is updated I want to bring scroll to the top position.

What should be code that I need to be done for this action. Thanks in Advance.


Solution

  • scrollView.fullScroll(ScrollView.FOCUS_UP);
    

    OR

    scrollView.scrollTo(0, 0); 
    

    should work