How to scroll to bottom in a ScrollView on activity startup

后端 未结 9 1028
Happy的楠姐
Happy的楠姐 2020-11-27 14:38

I am displaying some data in a ScrollView. On activity startup (method onCreate) I fill the ScrollView with data and want to scroll to the bottom.

I tried to use

9条回答
  •  [愿得一人]
    2020-11-27 15:36

     scrollView.postDelayed(new Runnable() {
            @Override
            public void run() {
                scrollView.fullScroll(ScrollView.FOCUS_DOWN);
            }
        },1000);
    

提交回复
热议问题