1

I want to create a bottom-to-top-link button in Andorid. I have a ListView with a large amount of data.

For an example have a look at this website. Imagine you scrolled down to the bottom of the webpage and you want to get back to the top of the webpage. To do that, you can click the back-to-top button that is scrolling the page back to the beginning of the document.

In the same way I want that for my ListView in Android. I have searched in Google but I didn't find anything related to that. Could you please help me?

SDwarfs
  • 3,189
  • 5
  • 31
  • 53
Nava2011
  • 195
  • 1
  • 15

2 Answers2

1

there are several ways to scroll to top of your list

listView.setSelectionAfterHeaderView();

listView.smoothScrollToPosition(0);

listview.setSelection(0);
Sina Amirshekari
  • 1,908
  • 1
  • 15
  • 17
0
myFAB.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        myScrollView.scrollTo(0, 0);
    }
});