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:co.db2llc.relationships.gui.dashboard.menu.LinearLayoutManager.java

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

From source file:com.fengmap.drpeng.common.CustomLinearLayoutManager.java

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

From source file:io.c0nnector.github.least.managers.LinearLayoutManagerWrap.java

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

From source file:com.aptoide.amethyst.ui.WrappingLinearLayoutManager.java

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

From source file:pl.pola_app.helpers.ProductsListLinearLayoutManager.java

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

From source file:com.bubble.simpleword.util.MyLayoutManager.java

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

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

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

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

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

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

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

From source file:co.db2llc.relationships.gui.dashboard.menu.LinearLayoutManager.java

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