如何让ScrollView自动滚动到底部?

时间:2022-09-24 19:42:53

How can i make it once the ScrollView is out of the screen it will auto scroll to the bottom?

如果ScrollView不在屏幕上,它将如何自动滚动到底部?

1 个解决方案

#1


3  

Try below code to achieve your task :-

尝试以下代码来完成您的任务: -

scroll.fullScroll(View.FOCUS_DOWN);

or

ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());

#1


3  

Try below code to achieve your task :-

尝试以下代码来完成您的任务: -

scroll.fullScroll(View.FOCUS_DOWN);

or

ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());