Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.os.Handler;

import android.widget.ScrollView;

public class Main {
    public static void scrollToBottom(final ScrollView sv) {
        Handler handler = new Handler();
        handler.post(new Runnable() {
            @Override
            public void run() {
                sv.fullScroll(ScrollView.FOCUS_DOWN);
            }
        });
    }
}