How can i make it once the ScrollView
is out of the screen it will auto scroll to the bottom?
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());