Example usage for android.support.v4.view ViewCompat getOverScrollMode

List of usage examples for android.support.v4.view ViewCompat getOverScrollMode

Introduction

In this page you can find the example usage for android.support.v4.view ViewCompat getOverScrollMode.

Prototype

public static int getOverScrollMode(View v) 

Source Link

Document

Returns the over-scroll mode for this view.

Usage

From source file:io.apptik.multiview.layoutmanagers.LinearLayoutManager2.java

@SuppressWarnings("UnusedDeclaration")
public LinearLayoutManager2(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:com.wanderingcan.persistentsearch.NestedLinearLayoutManager.java

public NestedLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:io.apptik.multiview.layoutmanagers.LinearLayoutManager2.java

@SuppressWarnings("UnusedDeclaration")
public LinearLayoutManager2(RecyclerView view, int orientation, boolean reverseLayout) {
    super(view.getContext(), orientation, reverseLayout);
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:com.wanderingcan.persistentsearch.NestedLinearLayoutManager.java

public NestedLinearLayoutManager(RecyclerView view, int orientation, boolean reverseLayout) {
    super(view.getContext(), orientation, reverseLayout);
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:io.github.prashantsolanki3.snaplibrary.snap.layoutmanagers.SnapNestedLinearLayoutManger.java

@SuppressWarnings("UnusedDeclaration")
public SnapNestedLinearLayoutManger(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:io.github.prashantsolanki3.snaplibrary.snap.layoutmanagers.SnapNestedLinearLayoutManger.java

@SuppressWarnings("UnusedDeclaration")
public SnapNestedLinearLayoutManger(RecyclerView view, int orientation, boolean reverseLayout) {
    super(view.getContext(), orientation, reverseLayout);
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:cradle.rancune.widget.adapterview.recyclerview.layoutmanager.WrapContentLinearLayoutManager.java

public WrapContentLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:miles.scribble.recyclerview.WrapContentLinearLayoutManager.java

@SuppressWarnings("UnusedDeclaration")
public WrapContentLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:android.support.v7.widget.WrapLinearLayoutManager.java

@SuppressWarnings("UnusedDeclaration")
public WrapLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

From source file:com.jiubai.taskmoment.widget.MyLinearLayoutManager.java

@SuppressWarnings("UnusedDeclaration")
public MyLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}