Example usage for android.support.v4.view NestedScrollingChildHelper NestedScrollingChildHelper

List of usage examples for android.support.v4.view NestedScrollingChildHelper NestedScrollingChildHelper

Introduction

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

Prototype

public NestedScrollingChildHelper(View view) 

Source Link

Document

Construct a new helper for a given view.

Usage

From source file:nu.yona.app.customview.NestedListView.java

/**
 * Instantiates a new Nested list view./* w  w w  .j  ava 2s  .  c om*/
 *
 * @param context the context
 */
public NestedListView(Context context) {
    super(context);
    mScrollingChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}

From source file:org.mozilla.focus.web.NestedGeckoView.java

public NestedGeckoView(Context context, AttributeSet attrs, GeckoViewSettings settings) {
    super(context, attrs, settings);

    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);//from w w w  .j a v a2  s  .  c o m
}

From source file:nu.yona.app.customview.NestedListView.java

/**
 * Instantiates a new Nested list view.//  ww  w.j av  a2s  . c o  m
 *
 * @param context the context
 * @param attrs   the attrs
 */
public NestedListView(Context context, AttributeSet attrs) {
    super(context, attrs);
    mScrollingChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}

From source file:org.mozilla.focus.webkit.NestedWebView.java

public NestedWebView(Context context, AttributeSet attrs) {
    super(context, attrs);

    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);//  w  ww .  jav  a2 s.  co m
}

From source file:com.smoothsync.smoothsetup.utils.CoordinatorWebView.java

public CoordinatorWebView(Context context) {
    super(context);
    mNestedScrollingChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);// w w w. j  ava2s .  co m
}

From source file:com.github.takahirom.zerobrowser.view.webview.ZeroBrowserWebView.java

public ZeroBrowserWebView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);/*from   w w  w. j  a v a2 s .c  o m*/
}

From source file:com.fangzp.daily.widget.NestedWebView.java

public NestedWebView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    mChildHelper = new NestedScrollingChildHelper(this);

    mScroller = ScrollerCompat.create(getContext(), null);

    setNestedScrollingEnabled(true);//w w  w  .  j ava 2  s.c o  m
}

From source file:com.geofbot.views.web.NestedWebView.java

public NestedWebView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);//from w  w  w  . j  a va  2 s. com
}

From source file:me.wizos.loread.view.webview.NestedScrollWebView.java

private void initView() {
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}

From source file:com.smoothsync.smoothsetup.utils.CoordinatorWebView.java

public CoordinatorWebView(Context context, AttributeSet attributeSet) {
    super(context, attributeSet);
    mNestedScrollingChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);//from  w  w w .j  a va2 s .  co m
}