Example usage for android.view View setOverScrollMode

List of usage examples for android.view View setOverScrollMode

Introduction

In this page you can find the example usage for android.view View setOverScrollMode.

Prototype

public void setOverScrollMode(int overScrollMode) 

Source Link

Document

Set the over-scroll mode for this view.

Usage

From source file:Main.java

@TargetApi(Build.VERSION_CODES.GINGERBREAD)
public static void setOverScrollModeByApi8(View view) {
    if (view != null) {
        if (Build.VERSION.SDK_INT > Build.VERSION_CODES.FROYO) {
            view.setOverScrollMode(View.OVER_SCROLL_NEVER);
        }/*  w  ww .  ja v  a2  s  . c  o m*/
    }
}