Example usage for android.widget ListView smoothScrollToPositionFromTop

List of usage examples for android.widget ListView smoothScrollToPositionFromTop

Introduction

In this page you can find the example usage for android.widget ListView smoothScrollToPositionFromTop.

Prototype

public void smoothScrollToPositionFromTop(int position, int offset, int duration) 

Source Link

Document

Smoothly scroll to the specified adapter position.

Usage

From source file:Main.java

public static void smoothScrollListView(ListView listView, int position, int offset, int duration) {
    if (VERSION.SDK_INT > 7) {
        listView.smoothScrollToPositionFromTop(position, offset, duration);
    }/*  w  ww.  j a va  2  s  . c o  m*/

    else {
        listView.setSelectionFromTop(position, offset);
    }
}