当前位置: 首页>>代码示例>>Java>>正文


Java NestedScrollingChild类代码示例

本文整理汇总了Java中android.support.v4.view.NestedScrollingChild的典型用法代码示例。如果您正苦于以下问题:Java NestedScrollingChild类的具体用法?Java NestedScrollingChild怎么用?Java NestedScrollingChild使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


NestedScrollingChild类属于android.support.v4.view包,在下文中一共展示了NestedScrollingChild类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: findScrollableViewInternal

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
protected View findScrollableViewInternal(View content, boolean selfable) {
    View scrollableView = null;
    Queue<View> views = new LinkedBlockingQueue<>(Collections.singletonList(content));
    while (!views.isEmpty() && scrollableView == null) {
        View view = views.poll();
        if (view != null) {
            if ((selfable || view != content) && (view instanceof AbsListView
                    || view instanceof ScrollView
                    || view instanceof ScrollingView
                    || view instanceof NestedScrollingChild
                    || view instanceof NestedScrollingParent
                    || view instanceof WebView
                    || view instanceof ViewPager)) {
                scrollableView = view;
            } else if (view instanceof ViewGroup) {
                ViewGroup group = (ViewGroup) view;
                for (int j = 0; j < group.getChildCount(); j++) {
                    views.add(group.getChildAt(j));
                }
            }
        }
    }
    return scrollableView;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:25,代码来源:RefreshContentWrapper.java

示例2: setPrimaryItem

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
@Override
public void setPrimaryItem(ViewGroup container, int position, Object object) {
    super.setPrimaryItem(container, position, object);
    if (object instanceof View) {
        mScrollableView = ((View) object);
    } else if (object instanceof Fragment) {
        mScrollableView = ((Fragment) object).getView();
    }
    if (mScrollableView != null) {
        mScrollableView = findScrollableViewInternal(mScrollableView, true);
        if (mScrollableView instanceof NestedScrollingParent
                && !(mScrollableView instanceof NestedScrollingChild)) {
            mScrollableView = findScrollableViewInternal(mScrollableView, false);
        }
    }
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:17,代码来源:RefreshContentWrapper.java

示例3: findScrollableView

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
protected void findScrollableView(View content, RefreshKernel kernel) {
    mScrollableView = null;
    while (mScrollableView == null || (mScrollableView instanceof NestedScrollingParent
            && !(mScrollableView instanceof NestedScrollingChild))) {
        content = findScrollableViewInternal(content, mScrollableView == null);
        if (content == mScrollableView) {
            break;
        }
        try {//try 不能删除,不然会出现兼容性问题
            if (content instanceof CoordinatorLayout) {
                kernel.getRefreshLayout().setEnableNestedScroll(false);
                wrapperCoordinatorLayout(((CoordinatorLayout) content), kernel.getRefreshLayout());
            }
        } catch (Throwable ignored) {
        }
        mScrollableView = content;
    }
}
 
开发者ID:penghuanliang,项目名称:Rxjava2.0Demo,代码行数:19,代码来源:RefreshContentWrapper.java

示例4: findScrollableViewInternal

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private View findScrollableViewInternal(View content, boolean selfable) {
    View scrollableView = null;
    Queue<View> views = new LinkedBlockingQueue<>(Collections.singletonList(content));
    while (!views.isEmpty() && scrollableView == null) {
        View view = views.poll();
        if (view != null) {
            if ((selfable || view != content) && (view instanceof AbsListView
                    || view instanceof ScrollView
                    || view instanceof ScrollingView
                    || view instanceof NestedScrollingChild
                    || view instanceof NestedScrollingParent
                    || view instanceof WebView
                    || view instanceof ViewPager)) {
                scrollableView = view;
            } else if (view instanceof ViewGroup) {
                ViewGroup group = (ViewGroup) view;
                for (int j = 0; j < group.getChildCount(); j++) {
                    views.add(group.getChildAt(j));
                }
            }
        }
    }
    return scrollableView;
}
 
开发者ID:Brave-wan,项目名称:SmartRefresh,代码行数:25,代码来源:RefreshContentWrapper.java

示例5: findScrollingChild

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private View findScrollingChild(View view) {
    if (view instanceof NestedScrollingChild) {
        return view;
    }
    if (view instanceof ViewGroup) {
        ViewGroup group = (ViewGroup) view;
        int count = group.getChildCount();
        for (int i = 0; i < count; i++) {
            View scrollingChild = findScrollingChild(group.getChildAt(i));
            if (scrollingChild != null) {
                return scrollingChild;
            }
        }
    }
    return null;
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:17,代码来源:BottomSheetBehavior.java

示例6: findScrollableView

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
protected void findScrollableView(View content, RefreshKernel kernel) {
    mScrollableView = null;
    while (mScrollableView == null || (mScrollableView instanceof NestedScrollingParent
            && !(mScrollableView instanceof NestedScrollingChild))) {
        content = findScrollableViewInternal(content, mScrollableView == null);
        if (content == mScrollableView) {
            break;
        }
        try {//try 不能删除,不然会出现兼容性问题
            if (content instanceof CoordinatorLayout) {
                kernel.getRefreshLayout().setEnableNestedScroll(false);
                wrapperCoordinatorLayout(((ViewGroup) content), kernel.getRefreshLayout());
            }
        } catch (Throwable ignored) {
        }
        mScrollableView = content;
    }
}
 
开发者ID:scwang90,项目名称:SmartRefreshLayout,代码行数:19,代码来源:RefreshContentWrapper.java

示例7: isScrollableView

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
protected boolean isScrollableView(View view) {
    return view instanceof AbsListView
            || view instanceof ScrollView
            || view instanceof ScrollingView
            || view instanceof NestedScrollingChild
            || view instanceof NestedScrollingParent
            || view instanceof WebView
            || view instanceof ViewPager;
}
 
开发者ID:penghuanliang,项目名称:Rxjava2.0Demo,代码行数:10,代码来源:RefreshContentWrapper.java

示例8: findScrollingChild

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private View findScrollingChild(View view) {
    if (view instanceof NestedScrollingChild) {
        return view;
    }
    if (view instanceof ViewGroup) {
        ViewGroup group = (ViewGroup) view;
        for (int i = 0, count = group.getChildCount(); i < count; i++) {
            View scrollingChild = findScrollingChild(group.getChildAt(i));
            if (scrollingChild != null) {
                return scrollingChild;
            }
        }
    }
    return null;
}
 
开发者ID:alphater,项目名称:garras,代码行数:16,代码来源:AnchorSheetBehavior.java

示例9: findScrollableView

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private void findScrollableView(View content) {
    mScrollableView = findScrollableViewInternal(content, true);
    if (mScrollableView instanceof NestedScrollingParent
            && !(mScrollableView instanceof NestedScrollingChild)) {
        mScrollableView = findScrollableViewInternal(mScrollableView, false);
    }
    if (mScrollableView instanceof ViewPager) {
        wrapperViewPager((ViewPager) this.mScrollableView);
    }
    if (mScrollableView == null) {
        mScrollableView = content;
    }
}
 
开发者ID:Brave-wan,项目名称:SmartRefresh,代码行数:14,代码来源:RefreshContentWrapper.java

示例10: analyNestedScrollingChildViews

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private void analyNestedScrollingChildViews() {
    View localView1 = getChildAt(0);
    if ((localView1 == null) || (!(localView1 instanceof ViewGroup)))
        throw new IllegalArgumentException("EmbeddedScrollView root child illegal");
    this.scrollingChildList = new ArrayList();
    ViewGroup localViewGroup = (ViewGroup) localView1;
    for (int i = 0; i < localViewGroup.getChildCount(); i++) {
        View localView2 = localViewGroup.getChildAt(i);
        if ((localView2 instanceof NestedScrollingChild))
            this.scrollingChildList.add(localView2);
    }
}
 
开发者ID:hanks-zyh,项目名称:NestedScroll,代码行数:13,代码来源:GoldScrollView.java

示例11: findScrollingChild

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
private View findScrollingChild(View view) {
  if (view instanceof NestedScrollingChild) {
    return view;
  }
  if (view instanceof ViewGroup) {
    ViewGroup group = (ViewGroup) view;
    for (int i = 0, count = group.getChildCount(); i < count; i++) {
      View scrollingChild = findScrollingChild(group.getChildAt(i));
      if (scrollingChild != null) {
        return scrollingChild;
      }
    }
  }
  return null;
}
 
开发者ID:cesardeazevedo,项目名称:react-native-bottom-sheet-behavior,代码行数:16,代码来源:RNBottomSheetBehavior.java

示例12: onFinishInflate

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
/**
 * 通过id得到相应的view
 */
@Override
protected void onFinishInflate() {

    final int childCount = getChildCount();

    if (childCount > 0) {
        mHeaderView = findViewById(R.id.refresh_header_view);
        mContentView = findViewById(R.id.recyclerview);
        mFooterView = findViewById(R.id.refresh_footer_view);
        mScrollView = findViewById(R.id.refresh_scroll_view);
    }

    if (mContentView == null) {
        throw new IllegalStateException("mContentView is null");
    }

    if (mIsCoo) {
        if (mContentView instanceof CoordinatorLayout) {

            CoordinatorLayout coo = (CoordinatorLayout) mContentView;

            mAppBar = (AppBarLayout) coo.getChildAt(0);


            setAppBarListener();

        } else {
            throw new IllegalStateException("mContentView is not CoordinatorLayout");
        }

        if (mScrollView == null) {
            throw new IllegalStateException("mScrollView is null");
        }

        if (mScrollView instanceof ViewPager) {

            mViewPager = (ViewPager) mScrollView;
            mIsViewPager = true;

        } else if (mScrollView instanceof NestedScrollingChild) {

            mIsViewPager = false;

        } else {
            throw new IllegalStateException("mScrollView is not NestedScrollingChild or ViewPager");
        }
    }

    if (mHeaderView != null && !(mHeaderView instanceof IRefresh)) {

        throw new IllegalStateException("mHeaderView  error");
    }
    if (mFooterView != null && !(mFooterView instanceof IRefresh)) {

        throw new IllegalStateException("mFooterView error");
    }

    if (mHeaderView != null) {

        getHeaderInterface().setIsHeaderOrFooter(true);
    }

    if (mFooterView != null) {

        getFooterInterface().setIsHeaderOrFooter(false);
    }


    super.onFinishInflate();


    setStyle(mHeadStyle, mFootStyle);

}
 
开发者ID:rawray,项目名称:RRFramework-Android,代码行数:78,代码来源:RefreshLayout.java

示例13: create

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
/**
 * create the nested scroll helper.
 * @param target  the target view
 * @param sensitivity Multiplier for how sensitive the helper should be about detecting
 *                    the start of a drag. Larger values are more sensitive. 1.0f is normal.
 * @param scroller  the scroller
 * @param child the NestedScrollingChild.
 * @param callback the callback
 */
public static NestedScrollHelper create(View target, float sensitivity, OverScroller scroller, NestedScrollingChild child,
                                  NestedScrollHelper.NestedScrollCallback callback) {
    return new NestedScrollHelper(target , sensitivity, scroller, child , callback);
}
 
开发者ID:LightSun,项目名称:Android-sticky-navigation-layout,代码行数:14,代码来源:NestedScrollFactory.java

示例14: NestedScrollHelper

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
/**
 * create the nested scroll helper. But,the target view must implements interface {@link NestedScrollingChild}.
 * @param target  the target view
 * @param scroller  the scroller
 * @param callback the callback
 */
public NestedScrollHelper(View target, OverScroller scroller, NestedScrollCallback callback) {
    this(target, 1, scroller, (NestedScrollingChild) target, callback);
}
 
开发者ID:LightSun,项目名称:Android-sticky-navigation-layout,代码行数:10,代码来源:NestedScrollHelper.java

示例15: onFinishInflate

import android.support.v4.view.NestedScrollingChild; //导入依赖的package包/类
/**
 * 通过id得到相应的view
 */
@Override
protected void onFinishInflate() {

    final int childCount = getChildCount();

    if (childCount > 0) {
        mHeaderView = findViewById(com.canyinghao.canrefresh.R.id.can_refresh_header);
        mContentView = findViewById(com.canyinghao.canrefresh.R.id.can_content_view);
        mFooterView = findViewById(com.canyinghao.canrefresh.R.id.can_refresh_footer);
        mScrollView = findViewById(com.canyinghao.canrefresh.R.id.can_scroll_view);
    }

    if (mContentView == null) {
        throw new IllegalStateException("mContentView is null");
    }

    if (mIsCoo) {
        if (mContentView instanceof CoordinatorLayout) {

            CoordinatorLayout coo = (CoordinatorLayout) mContentView;

            mAppBar = (AppBarLayout) coo.getChildAt(0);


            setAppBarListener();

        } else {
            throw new IllegalStateException("mContentView is not CoordinatorLayout");
        }

        if (mScrollView == null) {
            throw new IllegalStateException("mScrollView is null");
        }

        if (!(mScrollView instanceof NestedScrollingChild)) {
            throw new IllegalStateException("mScrollView is not NestedScrollingChild");
        }
    }

    if (mHeaderView != null && !(mHeaderView instanceof CanRefresh)) {

        throw new IllegalStateException("mHeaderView  error");
    }
    if (mFooterView != null && !(mFooterView instanceof CanRefresh)) {

        throw new IllegalStateException("mFooterView error");
    }

    if (mHeaderView != null) {

        getHeaderInterface().setIsHeaderOrFooter(true);
    }

    if (mFooterView != null) {

        getFooterInterface().setIsHeaderOrFooter(false);
    }


    super.onFinishInflate();


    setStyle(mHeadStyle, mFootStyle);

}
 
开发者ID:yin450561200,项目名称:-,代码行数:69,代码来源:CanRefreshLayout.java


注:本文中的android.support.v4.view.NestedScrollingChild类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。