Last active
August 3, 2016 13:25
-
-
Save IgorGanapolsky/348f2fdd56458426710459012aefe210 to your computer and use it in GitHub Desktop.
An Android LinearLayoutManager which measures its views for proper nested RecyclerView rendering.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eazyigz.ui; | |
import android.content.Context; | |
import android.support.v7.widget.LinearLayoutManager; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import timber.log.Timber; | |
/** | |
* A {@link LinearLayoutManager} which measures its views for proper nested RecyclerView rendering. | |
*/ | |
public class CustomLinearLayoutManager extends LinearLayoutManager { | |
private static final String TAG = CustomLinearLayoutManager.class.getCanonicalName() + " "; | |
private final int[] mMeasuredDimension = new int[2]; | |
public CustomLinearLayoutManager(Context context) { | |
super(context); | |
} | |
@Override | |
public void onMeasure(final RecyclerView.Recycler recycler, final RecyclerView.State state, | |
final int widthSpec, final 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); | |
int width = 0; | |
int height = 0; | |
for (int i = 0; i < getItemCount(); i++) { | |
measureScrapChild(recycler, View.MeasureSpec.makeMeasureSpec(i, View.MeasureSpec. | |
UNSPECIFIED), | |
View.MeasureSpec.makeMeasureSpec(i, View.MeasureSpec.UNSPECIFIED), | |
mMeasuredDimension); | |
if (getOrientation() == HORIZONTAL) { | |
width = width + mMeasuredDimension[0]; | |
if (i == 0) { | |
height = mMeasuredDimension[1]; | |
} | |
} else { | |
height = height + mMeasuredDimension[1]; | |
if (i == 0) { | |
width = mMeasuredDimension[0]; | |
} | |
} | |
} | |
switch (widthMode) { | |
case View.MeasureSpec.EXACTLY: | |
width = widthSize; | |
case View.MeasureSpec.AT_MOST: | |
case View.MeasureSpec.UNSPECIFIED: | |
} | |
switch (heightMode) { | |
case View.MeasureSpec.EXACTLY: | |
height = heightSize; | |
case View.MeasureSpec.AT_MOST: | |
case View.MeasureSpec.UNSPECIFIED: | |
} | |
setMeasuredDimension(width, height); | |
} | |
private void measureScrapChild(final RecyclerView.Recycler recycler, final int widthSpec, | |
final int heightSpec, final int[] measuredDimension) { | |
try { | |
View view = recycler.getViewForPosition(0); | |
if (view != null) { | |
RecyclerView.LayoutParams p = (RecyclerView.LayoutParams) view.getLayoutParams(); | |
int childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec, | |
getPaddingLeft() + getPaddingRight(), p.width); | |
int childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec, | |
getPaddingTop() + getPaddingBottom(), p.height); | |
view.measure(childWidthSpec, childHeightSpec); | |
measuredDimension[0] = view.getMeasuredWidth() + p.leftMargin + p.rightMargin; | |
measuredDimension[1] = view.getMeasuredHeight() + p.bottomMargin + p.topMargin; | |
recycler.recycleView(view); | |
} | |
} catch (Exception e) { | |
Timber.e(TAG + e.getMessage()); | |
} | |
} | |
/** | |
* Disable scrolling. | |
*/ | |
@Override | |
public boolean canScrollVertically() { | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment