亚洲精品专区av无码专区,久久久久人妻精品一区三寸,亚洲AⅤ无码一区二区波多野按摩,国产浪潮AV无码喷水

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

關(guān)注行業(yè)新聞 把握時(shí)代脈搏

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

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

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

鄭州app開發(fā)

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

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

經(jīng)過查閱相關(guān)內(nèi)容發(fā)現(xiàn)在設(shè)置recycleview。setLayoutManager可以解決這個(gè)問題

下面是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ā)布。


版權(quán)與免責(zé)聲明

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

分享到微信朋友圈 +
打開微信,點(diǎn)擊底部的“發(fā)現(xiàn)”,使用 “掃一掃” 即可將網(wǎng)頁分享到我的朋友圈。 如何使用?
推薦文章
小程序免費(fèi)制作平臺(tái)真的免費(fèi)嗎

般都是承接定制開發(fā)的,容易智能可以按客戶的需求,經(jīng)過原型圖制作、頁面設(shè)計(jì)、軟件開發(fā)、在線測試...

燚軒科技    · 06月04日 ·    小程序開發(fā),鄭州小程序制作
1947 閱讀量
怎樣降低APP的卸載率,減少用戶流失?

P上線第一件事就是獲取用戶,那么在獲取用戶之后怎樣減少用戶流失,增加用戶留存率呢?...

燚軒科技    · 07月04日 ·    鄭州APP開發(fā)、鄭州APP制作
1971 閱讀量
鄭州微信小程序開發(fā)多少錢?受什么因素影響?

間不長,但由于其背靠微信平臺(tái),擁有強(qiáng)大的引流功能,微信小程序越來越受歡迎,越來越多的企業(yè)加入...

燚軒科技    · 11月03日 ·    鄭州小程序開發(fā),鄭州小程序制作,鄭州小程序開發(fā)公司
2076 閱讀量
鄭州商城小程序開發(fā)哪家能做,哪家做的好

序開發(fā)以及在運(yùn)營中的商城小程序有很多了,只要大家去搜索就會(huì)發(fā)現(xiàn),原本不怎么留意的商城類的小程...

燚軒科技    · 03月01日 ·    鄭州商城小程序開發(fā)
2490 閱讀量
功能強(qiáng)大的醫(yī)療app軟件,鄭州app開發(fā)講解開發(fā)要點(diǎn)

越來越火,目前整個(gè)行業(yè)市場都出現(xiàn)了相關(guān)的app軟件,同樣,作為人們?nèi)粘I钪械木歪t(yī)問題,也出...

燚軒科技    · 04月03日 ·    醫(yī)療app,鄭州app開發(fā)
2213 閱讀量
怎樣才能緊跟時(shí)代潮流?小程序商城你做了嗎?

營品牌還是個(gè)人經(jīng)營商店,小程序商場都已成為電子商務(wù)行業(yè)的一種選擇。如今,許多奢侈品牌旗艦店已...

燚軒科技    · 10月28日 ·    鄭州小程序開發(fā),鄭州小程序制作,鄭州小程序開發(fā)公司
1516 閱讀量
景泰县| 海宁市| 梓潼县| 梧州市| 武陟县| 杭州市| 湟源县| 保靖县| 勃利县| 宣武区| 丹棱县| 上虞市| 碌曲县| 上蔡县| 鹤岗市| 伊宁市| 监利县| 南皮县| 台山市| 平山县| 荆州市| 祁连县| 方正县| 汶川县| 平乡县| 淮阳县| 尉犁县| 大连市| 潢川县| 长阳| 启东市| 丹江口市| 玛沁县| 乌兰察布市| 汕尾市| 页游| 肇东市| 扬州市| 上高县| 平阳县| 偃师市|