Created
July 13, 2017 02:06
-
-
Save baleen37/5abe50bded6da3ac3b35ec2a9bdc757b to your computer and use it in GitHub Desktop.
This file contains 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
public class SpacesItemDecoration extends RecyclerView.ItemDecoration { | |
private final int itemSplitMarginEven; | |
private final int itemSplitMarginLarge; | |
private final int itemSplitMarginSmall; | |
private final int verticalSpacing; | |
public static SpacesItemDecoration newInstance(int horizontalSpacing, int verticalSpacing, int spanCount) { | |
int maxNumberOfSpaces = spanCount - 1; | |
int totalSpaceToSplitBetweenItems = maxNumberOfSpaces * horizontalSpacing; | |
int itemSplitMarginEven = (int) (0.5f * horizontalSpacing); | |
int itemSplitMarginLarge = totalSpaceToSplitBetweenItems / spanCount; | |
int itemSplitMarginSmall = horizontalSpacing - itemSplitMarginLarge; | |
return new SpacesItemDecoration(itemSplitMarginEven, itemSplitMarginLarge, itemSplitMarginSmall, verticalSpacing); | |
} | |
private SpacesItemDecoration(int itemSplitMarginEven, int itemSplitMarginLarge, int itemSplitMarginSmall, int verticalSpacing) { | |
this.itemSplitMarginEven = itemSplitMarginEven; | |
this.itemSplitMarginLarge = itemSplitMarginLarge; | |
this.itemSplitMarginSmall = itemSplitMarginSmall; | |
this.verticalSpacing = verticalSpacing; | |
} | |
@Override | |
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) { | |
RecyclerView.LayoutParams layoutParams = (RecyclerView.LayoutParams) view.getLayoutParams(); | |
int itemPosition = layoutParams.getViewPosition(); | |
int childCount = parent.getAdapter().getItemCount(); | |
SpanLookup spanLookup = getSpanLookup(view, parent); | |
applyItemHorizontalOffsets(spanLookup, itemPosition, outRect); | |
applyItemVerticalOffsets(outRect, itemPosition, childCount, spanLookup.getSpanCount(), spanLookup); | |
} | |
protected SpanLookup getSpanLookup(View view, RecyclerView parent) { | |
RecyclerView.LayoutManager layoutManager = parent.getLayoutManager(); | |
if (layoutManager instanceof GridLayoutManager) { | |
return SpanLookupFactory.gridLayoutSpanLookup((GridLayoutManager) layoutManager); | |
} | |
return SpanLookupFactory.singleSpan(); | |
} | |
private void applyItemVerticalOffsets(Rect outRect, int itemPosition, int childCount, int spanCount, SpanLookup spanLookup) { | |
outRect.top = getItemTopSpacing(spanLookup, verticalSpacing, itemPosition, spanCount, childCount); | |
outRect.bottom = getItemBottomSpacing(spanLookup, verticalSpacing, itemPosition, childCount); | |
} | |
private void applyItemHorizontalOffsets(SpanLookup spanLookup, int itemPosition, Rect offsets) { | |
if (itemIsFullSpan(spanLookup, itemPosition)) { | |
offsets.left = 0; | |
offsets.right = 0; | |
return; | |
} | |
if (itemStartsAtTheLeftEdge(spanLookup, itemPosition)) { | |
offsets.left = 0; | |
offsets.right = itemSplitMarginLarge; | |
return; | |
} | |
if (itemEndsAtTheRightEdge(spanLookup, itemPosition)) { | |
offsets.left = itemSplitMarginLarge; | |
offsets.right = 0; | |
return; | |
} | |
if (itemIsNextToAnItemThatStartsOnTheLeftEdge(spanLookup, itemPosition)) { | |
offsets.left = itemSplitMarginSmall; | |
} else { | |
offsets.left = itemSplitMarginEven; | |
} | |
if (itemIsNextToAnItemThatEndsOnTheRightEdge(spanLookup, itemPosition)) { | |
offsets.right = itemSplitMarginSmall; | |
} else { | |
offsets.right = itemSplitMarginEven; | |
} | |
} | |
private static boolean itemIsNextToAnItemThatStartsOnTheLeftEdge(SpanLookup spanLookup, int itemPosition) { | |
return !itemStartsAtTheLeftEdge(spanLookup, itemPosition) && itemStartsAtTheLeftEdge(spanLookup, itemPosition - 1); | |
} | |
private static boolean itemIsNextToAnItemThatEndsOnTheRightEdge(SpanLookup spanLookup, int itemPosition) { | |
return !itemEndsAtTheRightEdge(spanLookup, itemPosition) && itemEndsAtTheRightEdge(spanLookup, itemPosition + 1); | |
} | |
private static boolean itemIsFullSpan(SpanLookup spanLookup, int itemPosition) { | |
return itemStartsAtTheLeftEdge(spanLookup, itemPosition) && itemEndsAtTheRightEdge(spanLookup, itemPosition); | |
} | |
private static boolean itemStartsAtTheLeftEdge(SpanLookup spanLookup, int itemPosition) { | |
return spanLookup.getSpanIndex(itemPosition) == 0; | |
} | |
private static boolean itemEndsAtTheRightEdge(SpanLookup spanLookup, int itemPosition) { | |
return spanLookup.getSpanIndex(itemPosition) + spanLookup.getSpanSize(itemPosition) == spanLookup.getSpanCount(); | |
} | |
private static int getItemTopSpacing(SpanLookup spanLookup, int verticalSpacing, int itemPosition, int spanCount, int childCount) { | |
if (itemIsOnTheTopRow(spanLookup, itemPosition, spanCount, childCount)) { | |
return 0; | |
} else { | |
return (int) (.5f * verticalSpacing); | |
} | |
} | |
private static boolean itemIsOnTheTopRow(SpanLookup spanLookup, int itemPosition, int spanCount, int childCount) { | |
int latestCheckedPosition = 0; | |
for (int i = 0; i < childCount; i++) { | |
latestCheckedPosition = i; | |
int spanEndIndex = spanLookup.getSpanIndex(i) + spanLookup.getSpanSize(i) - 1; | |
if (spanEndIndex == spanCount - 1) { | |
break; | |
} | |
} | |
return itemPosition <= latestCheckedPosition; | |
} | |
private static int getItemBottomSpacing(SpanLookup spanLookup, int verticalSpacing, int itemPosition, int childCount) { | |
if (itemIsOnTheBottomRow(spanLookup, itemPosition, childCount)) { | |
return 0; | |
} else { | |
return (int) (.5f * verticalSpacing); | |
} | |
} | |
private static boolean itemIsOnTheBottomRow(SpanLookup spanLookup, int itemPosition, int childCount) { | |
int latestCheckedPosition = 0; | |
for (int i = childCount - 1; i >= 0; i--) { | |
latestCheckedPosition = i; | |
int spanIndex = spanLookup.getSpanIndex(i); | |
if (spanIndex == 0) { | |
break; | |
} | |
} | |
return itemPosition >= latestCheckedPosition; | |
} | |
} |
This file contains 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
public interface SpanLookup { | |
/** | |
* @return number of spans in a row | |
*/ | |
int getSpanCount(); | |
/** | |
* @param itemPosition | |
* @return start span for the item at the given adapter position | |
*/ | |
int getSpanIndex(int itemPosition); | |
/** | |
* @param itemPosition | |
* @return number of spans the item at the given adapter position occupies | |
*/ | |
int getSpanSize(int itemPosition); | |
} |
This file contains 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
class SpanLookupFactory { | |
static SpanLookup singleSpan() { | |
return new SpanLookup() { | |
@Override | |
public int getSpanCount() { | |
return 1; | |
} | |
@Override | |
public int getSpanIndex(int itemPosition) { | |
return 0; | |
} | |
@Override | |
public int getSpanSize(int itemPosition) { | |
return 1; | |
} | |
}; | |
} | |
static SpanLookup gridLayoutSpanLookup(final GridLayoutManager layoutManager) { | |
return new SpanLookup() { | |
@Override | |
public int getSpanCount() { | |
return layoutManager.getSpanCount(); | |
} | |
@Override | |
public int getSpanIndex(int itemPosition) { | |
return layoutManager.getSpanSizeLookup().getSpanIndex(itemPosition, getSpanCount()); | |
} | |
@Override | |
public int getSpanSize(int itemPosition) { | |
return layoutManager.getSpanSizeLookup().getSpanSize(itemPosition); | |
} | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment