Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.widget.ListView;

public class Main {
    public static void ensureVisibleSmoothScroll(ListView listView, int pos) {
        if (listView == null)
            return;

        if (pos < 0 || pos >= listView.getCount())
            return;

        listView.smoothScrollToPosition(pos);
    }
}