Example usage for android.view View setFadingEdgeLength

List of usage examples for android.view View setFadingEdgeLength

Introduction

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

Prototype

public void setFadingEdgeLength(int length) 

Source Link

Document

Set the size of the faded edge used to indicate that more content in this view is available.

Usage

From source file:Main.java

public static void viewBaseSetting(View target) {
    target.setFadingEdgeLength(0);
    //      target.setWillNotDraw(true);
    target.setWillNotCacheDrawing(true);
    target.setBackgroundColor(0x00000000);
}