Search in sources :

Example 1 with NestedScrollingChildHelper

use of android.support.v4.view.NestedScrollingChildHelper in project MaterialFBook by ZeeRooo.

the class MFBWebView method init.

private void init() {
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}
Also used : NestedScrollingChildHelper(android.support.v4.view.NestedScrollingChildHelper)

Example 2 with NestedScrollingChildHelper

use of android.support.v4.view.NestedScrollingChildHelper in project seven_develop by seven123456.

the class NestedScrollWebView method init.

private void init() {
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}
Also used : NestedScrollingChildHelper(android.support.v4.view.NestedScrollingChildHelper)

Example 3 with NestedScrollingChildHelper

use of android.support.v4.view.NestedScrollingChildHelper in project weex-example by KalicyZhou.

the class WXScrollView method init.

private void init() {
    setWillNotDraw(false);
    startScrollerTask();
    setOverScrollMode(View.OVER_SCROLL_NEVER);
    childHelper = new NestedScrollingChildHelper(this);
    childHelper.setNestedScrollingEnabled(true);
}
Also used : NestedScrollingChildHelper(android.support.v4.view.NestedScrollingChildHelper)

Example 4 with NestedScrollingChildHelper

use of android.support.v4.view.NestedScrollingChildHelper in project instructure-android by instructure.

the class CanvasWebView method onAttachedToWindow.

@Override
protected void onAttachedToWindow() {
    super.onAttachedToWindow();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        if (getParent() instanceof CoordinatorLayout) {
            mChildHelper = new NestedScrollingChildHelper(this);
            setNestedScrollingEnabled(true);
        }
    }
}
Also used : CoordinatorLayout(android.support.design.widget.CoordinatorLayout) NestedScrollingChildHelper(android.support.v4.view.NestedScrollingChildHelper)

Example 5 with NestedScrollingChildHelper

use of android.support.v4.view.NestedScrollingChildHelper in project AgentWeb by Justson.

the class NestedScrollAgentWebView method init.

private void init() {
    mChildHelper = new NestedScrollingChildHelper(this);
    setNestedScrollingEnabled(true);
}
Also used : NestedScrollingChildHelper(android.support.v4.view.NestedScrollingChildHelper)

Aggregations

NestedScrollingChildHelper (android.support.v4.view.NestedScrollingChildHelper)8 NestedScrollingParentHelper (android.support.v4.view.NestedScrollingParentHelper)2 TypedArray (android.content.res.TypedArray)1 Paint (android.graphics.Paint)1 CoordinatorLayout (android.support.design.widget.CoordinatorLayout)1 DensityUtil (com.scwang.smartrefresh.util.DensityUtil)1 ViscousFluidInterpolator (com.scwang.smartrefresh.util.ViscousFluidInterpolator)1