燚轩科技 助力中小型企业

关注行业新闻 把握时代脉搏

安卓app开发中解决recycleview 和 scollview 嵌套 问题

app开发问题,郑州app开发 2018-03-07 4006

有时候想要recycleview 和 scollview 嵌套 并且全部展开recycleview,这样的app技术无疑是很多人头疼的,那么下面郑州app开发就来详细的讲解一下。

郑州app开发

但是会发现 简单的嵌套后 recycleview不能滑动 或者无法看到展开的全部内容

下面郑州app开发小编为大家附上解决问题的代码

经过查阅相关内容发现在设置recycleview。setLayoutManager可以解决这个问题

下面是manager的代码

public class FullyLinearLayoutManager extends LinearLayoutManager {

private static boolean canMakeInsetsDirty = true;

private static Field insetsDirtyField = null;

private static final int CHILD_WIDTH = 0;

private static final int CHILD_HEIGHT = 1;

private static final int DEFAULT_CHILD_SIZE = 100;

private final int[] childDimensions = new int[2];

private final RecyclerView view;

private int childSize = DEFAULT_CHILD_SIZE;

private boolean hasChildSize;

private int overScrollMode = ViewCompat.OVER_SCROLL_ALWAYS;

private final Rect tmpRect = new Rect();

public FullyLinearLayoutManager(Context context) {

super(context);

this.view = null;

}

public FullyLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {

super(context, orientation, reverseLayout);

this.view = null;

}

public FullyLinearLayoutManager(RecyclerView view) {

super(view.getContext());

this.view = view;

this.overScrollMode = ViewCompat.getOverScrollMode(view);

}

public FullyLinearLayoutManager(RecyclerView view, int orientation, boolean reverseLayout) {

super(view.getContext(), orientation, reverseLayout);

this.view = view;

this.overScrollMode = ViewCompat.getOverScrollMode(view);

}

public void setOverScrollMode(int overScrollMode) {

if (overScrollMode < ViewCompat.OVER_SCROLL_ALWAYS || overScrollMode > ViewCompat.OVER_SCROLL_NEVER)

throw new IllegalArgumentException("Unknown overscroll mode: " + overScrollMode);

if (this.view == null) throw new IllegalStateException("view == null");

this.overScrollMode = overScrollMode;

ViewCompat.setOverScrollMode(view, overScrollMode);

}

public static int makeUnspecifiedSpec() {

return View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);

}

@Override

public void onMeasure(RecyclerView.Recycler recycler, RecyclerView.State state, int widthSpec, int heightSpec) {

final int widthMode = View.MeasureSpec.getMode(widthSpec);

final int heightMode = View.MeasureSpec.getMode(heightSpec);

final int widthSize = View.MeasureSpec.getSize(widthSpec);

final int heightSize = View.MeasureSpec.getSize(heightSpec);

final boolean hasWidthSize = widthMode != View.MeasureSpec.UNSPECIFIED;

final boolean hasHeightSize = heightMode != View.MeasureSpec.UNSPECIFIED;

final boolean exactWidth = widthMode == View.MeasureSpec.EXACTLY;

final boolean exactHeight = heightMode == View.MeasureSpec.EXACTLY;

final int unspecified = makeUnspecifiedSpec();

if (exactWidth && exactHeight) {

// in case of exact calculations for both dimensions let's use default "onMeasure" implementation

super.onMeasure(recycler, state, widthSpec, heightSpec);

return;

}

final boolean vertical = getOrientation() == VERTICAL;

initChildDimensions(widthSize, heightSize, vertical);

int width = 0;

int height = 0;

// it's possible to get scrap views in recycler which are bound to old (invalid) adapter entities. This

// happens because their invalidation happens after "onMeasure" method. As a workaround let's clear the

// recycler now (it should not cause any performance issues while scrolling as "onMeasure" is never

// called whiles scrolling)

recycler.clear();

final int stateItemCount = state.getItemCount();

final int adapterItemCount = getItemCount();

// adapter always contains actual data while state might contain old data (f.e. data before the animation is

// done). As we want to measure the view with actual data we must use data from the adapter and not from the

// state

for (int i = 0; i < adapterItemCount; i++) {

if (vertical) {

if (!hasChildSize) {

if (i < stateItemCount) {

// we should not exceed state count, otherwise we'll get IndexOutOfBoundsException. For such items

// we will use previously calculated dimensions

measureChild(recycler, i, widthSize, unspecified, childDimensions);

} else {

logMeasureWarning(i);

}

}

height += childDimensions[CHILD_HEIGHT];

if (i == 0) {

width = childDimensions[CHILD_WIDTH];

}

if (hasHeightSize && height >= heightSize) {

break;

}

} else {

if (!hasChildSize) {

if (i < stateItemCount) {

// we should not exceed state count, otherwise we'll get IndexOutOfBoundsException. For such items

// we will use previously calculated dimensions

measureChild(recycler, i, unspecified, heightSize, childDimensions);

} else {

logMeasureWarning(i);

}

}

width += childDimensions[CHILD_WIDTH];

if (i == 0) {

height = childDimensions[CHILD_HEIGHT];

}

if (hasWidthSize && width >= widthSize) {

break;

}

}

}

if (exactWidth) {

width = widthSize;

} else {

width += getPaddingLeft() + getPaddingRight();

if (hasWidthSize) {

width = Math.min(width, widthSize);

}

}

if (exactHeight) {

height = heightSize;

} else {

height += getPaddingTop() + getPaddingBottom();

if (hasHeightSize) {

height = Math.min(height, heightSize);

}

}

setMeasuredDimension(width, height);

if (view != null && overScrollMode == ViewCompat.OVER_SCROLL_IF_CONTENT_SCROLLS) {

final boolean fit = (vertical && (!hasHeightSize || height < heightSize))

|| (!vertical && (!hasWidthSize || width < widthSize));

ViewCompat.setOverScrollMode(view, fit ? ViewCompat.OVER_SCROLL_NEVER : ViewCompat.OVER_SCROLL_ALWAYS);

}

}

private void logMeasureWarning(int child) {

}

private void initChildDimensions(int width, int height, boolean vertical) {

if (childDimensions[CHILD_WIDTH] != 0 || childDimensions[CHILD_HEIGHT] != 0) {

// already initialized, skipping

return;

}

if (vertical) {

childDimensions[CHILD_WIDTH] = width;

childDimensions[CHILD_HEIGHT] = childSize;

} else {

childDimensions[CHILD_WIDTH] = childSize;

childDimensions[CHILD_HEIGHT] = height;

}

}

@Override

public void setOrientation(int orientation) {

// might be called before the constructor of this class is called

//noinspection ConstantConditions

if (childDimensions != null) {

if (getOrientation() != orientation) {

childDimensions[CHILD_WIDTH] = 0;

childDimensions[CHILD_HEIGHT] = 0;

}

}

super.setOrientation(orientation);

}

public void clearChildSize() {

hasChildSize = false;

setChildSize(DEFAULT_CHILD_SIZE);

}

public void setChildSize(int childSize) {

hasChildSize = true;

if (this.childSize != childSize) {

this.childSize = childSize;

requestLayout();

}

}

private void measureChild(RecyclerView.Recycler recycler, int position, int widthSize, int heightSize, int[] dimensions) {

final View child;

try {

child = recycler.getViewForPosition(position);

} catch (IndexOutOfBoundsException e) {

return;

}

final RecyclerView.LayoutParams p = (RecyclerView.LayoutParams) child.getLayoutParams();

final int hPadding = getPaddingLeft() + getPaddingRight();

final int vPadding = getPaddingTop() + getPaddingBottom();

final int hMargin = p.leftMargin + p.rightMargin;

final int vMargin = p.topMargin + p.bottomMargin;

// we must make insets dirty in order calculateItemDecorationsForChild to work

makeInsetsDirty(p);

// this method should be called before any getXxxDecorationXxx() methods

calculateItemDecorationsForChild(child, tmpRect);

final int hDecoration = getRightDecorationWidth(child) + getLeftDecorationWidth(child);

final int vDecoration = getTopDecorationHeight(child) + getBottomDecorationHeight(child);

final int childWidthSpec = getChildMeasureSpec(widthSize, hPadding + hMargin + hDecoration, p.width, canScrollHorizontally());

final int childHeightSpec = getChildMeasureSpec(heightSize, vPadding + vMargin + vDecoration, p.height, canScrollVertically());

child.measure(childWidthSpec, childHeightSpec);

dimensions[CHILD_WIDTH] = getDecoratedMeasuredWidth(child) + p.leftMargin + p.rightMargin;

dimensions[CHILD_HEIGHT] = getDecoratedMeasuredHeight(child) + p.bottomMargin + p.topMargin;

// as view is recycled let's not keep old measured values

makeInsetsDirty(p);

recycler.recycleView(child);

}

private static void makeInsetsDirty(RecyclerView.LayoutParams p) {

if (!canMakeInsetsDirty) {

return;

}

try {

if (insetsDirtyField == null) {

insetsDirtyField = RecyclerView.LayoutParams.class.getDeclaredField("mInsetsDirty");

insetsDirtyField.setAccessible(true);

}

insetsDirtyField.set(p, true);

} catch (NoSuchFieldException e) {

onMakeInsertDirtyFailed();

} catch (IllegalAccessException e) {

onMakeInsertDirtyFailed();

}

}

private static void onMakeInsertDirtyFailed() {

canMakeInsetsDirty = false;

}

}

以上信息由郑州app开发公司燚轩科技整理发布。


版权与免责声明

郑州APP开发,郑州小程序开发燚轩软件科技有限公司声明:如发现内容存在版权问题,烦请提供相关信息发邮件至854221200@qq.com,我们将及时沟通处理。本站内容源于网络,涉及内容、言论与本站无关

分享到微信朋友圈 +
打开微信,点击底部的“发现”,使用 “扫一扫” 即可将网页分享到我的朋友圈。 如何使用?
推荐文章
梅西头顶草坪跪地,阿根廷终究与世界杯无缘

进入尾声,被寄予厚望的阿根廷球员梅西,终究再次无法上演奇迹,而这也成为了梅西世界杯最后一场球...

燚轩科技    · 07月03日 ·    梅西,世界杯
3663 阅读量
在郑州互联网+代驾的模式APP开发需要什么特点

发现随着移动互联网的趋势越来越强,时代不停发展,正处于手机APP开发火热的时代,代驾+互联网...

燚轩科技    · 10月15日 ·    APP开发 、郑州APP开发 APP开发公司
3031 阅读量
社区团购的小程序到底该怎么做才能留存客户

意思的是,社区团购的交易表现形式是早期的群接龙,因为群接龙可以很好地传播和裂变订单。群接龙这...

燚轩科技    · 06月11日 ·    小程序开发,郑州小程序制作
2408 阅读量
相亲交友APP 同城交友APP

今天给大家讲述相亲交友APP同城交友APP,在当今快节奏的现代生活中,人们的社交圈逐渐变窄,...

燚轩科技    · 04月23日 ·    郑州app开发,郑州app开发公司,郑州小程序开发,郑州小程序开发公司,郑州app定制
242 阅读量
微信小程序开发的种类如此之多,用户该如何选择

人疑惑,知识还能赚钱吗?是的,知识付费就是对于自己不知道的东西,你可以选择付钱购买答案,虽然...

燚轩科技    · 05月19日 ·    小程序开发,郑州小程序制作
2465 阅读量
小程序开发定制专家,定制开发小程序的好处

于小程序开发的方式主要分为:模板开发和定制开发,有些开发公司之提供模板开发,因为这类开发公司...

燚轩科技    · 08月06日 ·    小程序开发定制专家,微信小程序开发公司
4273 阅读量