本文整理汇总了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;
}
示例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);
}
}
}
示例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;
}
}
示例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;
}
示例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;
}
示例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;
}
}
示例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;
}
示例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;
}
示例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;
}
}
示例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);
}
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}