伦理片电影网,亚洲欧美月韩日一区二区,夜夜福利亚洲,日韩一区二区三区久久在线

燚軒科技 助力中小型企業(yè)

關注行業(yè)新聞 把握時代脈搏

安卓app開發(fā)中解決recycleview 和 scollview 嵌套 問題

app開發(fā)問題,鄭州app開發(fā) 2018-03-07 4138

有時候想要recycleview 和 scollview 嵌套 并且全部展開recycleview,這樣的app技術無疑是很多人頭疼的,那么下面鄭州app開發(fā)就來詳細的講解一下。

鄭州app開發(fā)

但是會發(fā)現(xiàn) 簡單的嵌套后 recycleview不能滑動 或者無法看到展開的全部內容

下面鄭州app開發(fā)小編為大家附上解決問題的代碼

經過查閱相關內容發(fā)現(xiàn)在設置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開發(fā)公司燚軒科技整理發(fā)布。


版權與免責聲明

鄭州APP開發(fā),鄭州小程序開發(fā)燚軒軟件科技有限公司聲明:如發(fā)現(xiàn)內容存在版權問題,煩請?zhí)峁┫嚓P信息發(fā)郵件至854221200@qq.com,我們將及時溝通處理。本站內容源于網絡,涉及內容、言論與本站無關

分享到微信朋友圈 +
打開微信,點擊底部的“發(fā)現(xiàn)”,使用 “掃一掃” 即可將網頁分享到我的朋友圈。 如何使用?
推薦文章
創(chuàng)新型的鄭州小程序開發(fā)公司有沒有呢

司來說,要清楚目前的小程序開發(fā)市場形勢才行,現(xiàn)在小程序的數量已經非常多了,而這就導致了整個市...

燚軒科技    · 11月24日 ·    鄭州小程序開發(fā)公司
3610 閱讀量
鄭州小程序制作專家教你一個好的小程序是什么樣的

在短短兩年多的時間里,小程序總數已經達到250萬個,但真正優(yōu)秀的卻寥寥無幾。作為一個小程序平...

燚軒科技    · 12月10日 ·    小程序開發(fā),鄭州小程序制作 小程序開發(fā)公司
3153 閱讀量
鄭州直銷軟件開發(fā)專家分享直銷的相關知識

備優(yōu)秀的溝通能力,這也是在直銷中業(yè)務員必須具備的素質,那么對于直銷中存在的一些問題,你了解多...

燚軒科技    · 09月17日 ·    鄭州直銷軟件開發(fā)
4409 閱讀量
開發(fā)微信小程序都需要學習哪些知識?

生多時,許多企業(yè)和運營者也都相繼加入到了開發(fā)微信小程序的行列中來。那么,開發(fā)微信小程序需要學...

燚軒科技    · 12月19日 ·    鄭州微信小程序開發(fā)
3591 閱讀量
鄭州小程序開發(fā)應注意什么,小程序開發(fā)貴嗎

需要注意什么問題,很少有企業(yè)會去考慮,結合現(xiàn)在小程序開發(fā)市場的情況來看,部分的企業(yè)都是看到小...

燚軒科技    · 12月20日 ·    鄭州小程序開發(fā)
3725 閱讀量
每年近80億,您不知道的知識付費平臺有多“可怕”

任何一個行業(yè)的需求量都是一個龐大的體系。然而,作為普通人的我們有沒有想到一些我們經常用到的平...

燚軒科技    · 01月09日 ·    鄭州小程序開發(fā) 鄭州微信小程序開發(fā)
3121 閱讀量
亚洲合成图一区二区三区| 日本女人VA麻豆| 日本久热国产一区二区| 国产黄三级三级三级三级一区二反| 欧洲少妇首页| 九九成人香焦视频| 欧美视频 日韩视频 国产视频| 国产一级亚洲AV| 插入丝袜少妇| 欧美+国产+日韩+麻豆+天美| 人妻精品久久久久中文字幕二区| 日韩中文欧美在线| 欧美偷拍激情| 2区3区av| 欧美日韩熟妇视频| 天天操屄视频| 久久私人伦理| 青青草av无码一区二区| 老外又粗又大操逼嘎嘎九| 中文伦理在线视频| 天天日天天干天天揷| 大香蕉 在线观看| 亚洲国产精品黄色在线播放视频| 久久综合色88| 91国际精品sp| 欧美日韩片porn| 日韩三级在线观看地址中文字幕| 中国色在线不卡| 亚洲视频wwww| 五月基地视频播放| 欧美日精品一区二区区| 日韩电影无码黑人专区| 自拍偷拍AV国产| 欧美激情国产二区三区| 老司机人妻视频| 中文字幕日本国产| 极品少妇 内射| 。性生活毛片| 黄色电影久久影院| www.日本精品成人乱码.c| 亚洲最新国产不卡|