Example usage for android.support.v4.widget NestedScrollView subclass-usage

List of usage examples for android.support.v4.widget NestedScrollView subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.widget NestedScrollView subclass-usage.

Usage

From source file com.tsy.leanote.widget.MarkdownPreviewView.java

/**
 * Markdown View
 * The type Markdown preview view.
 */
public class MarkdownPreviewView extends NestedScrollView {
    public WebView mWebView;

From source file com.yanzhenjie.recyclerview.swipe.widget.StickyNestedScrollView.java

/**
 * <p>https://github.com/yanzhenjie/StickyScrollView</p>
 * Created by YanZhenjie on 2017/7/20.
 */
public class StickyNestedScrollView extends NestedScrollView {

From source file com.reactnativeandroiddesignsupport.ReactNestedScrollView.java

public class ReactNestedScrollView extends NestedScrollView implements ReactClippingViewGroup {
    private final OnScrollDispatchHelper mOnScrollDispatchHelper = new OnScrollDispatchHelper();
    private boolean mRemoveClippedSubviews;
    private @Nullable Rect mClippingRect;

    // EDITED: 2.

From source file com.bottomsheetbehavior.ReactNestedScrollView.java

/**
 * Forked from https://github.com/facebook/react-native/blob/v0.35.0/Libraries/Components/ScrollView/ScrollView.js
 *
 * A simple subclass of ScrollView that doesn't dispatch measure and layout to its children and has
 * a scroll listener to send scroll events to JS.
 *

From source file me.tylerbwong.pokebase.gui.views.PokemonInfoView.java

/**
 * @author Tyler Wong
 */
@SuppressWarnings("unused")
public class PokemonInfoView extends NestedScrollView {
    @BindView(R.id.type_one)

From source file com.rnnestedscrollview.ReactNestedScrollView.java

/**
 * Forked from https://github.com/facebook/react-native/blob/0.57-stable/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollView.java
 *
 * A simple subclass of ScrollView that doesn't dispatch measure and layout to its children and has
 * a scroll listener to send scroll events to JS.
 *