Android: ScrollView force to bottom

androidandroid-scrollview

I would like a ScrollView to start all the way at the bottom. Any methods?

Best Answer

you should run the code inside the scroll.post like this:

scroll.post(new Runnable() {            
    @Override
    public void run() {
           scroll.fullScroll(View.FOCUS_DOWN);              
    }
});