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);
}
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);
}
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);
}
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);
}
}
}
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);
}
Aggregations