GridLayoutManager.DefaultSpanSizeLookup

public final class GridLayoutManager.DefaultSpanSizeLookup extends GridLayoutManager.SpanSizeLookup


Default implementation for SpanSizeLookup. Each item occupies 1 span.

Summary

Public constructors

Public methods

int
getSpanIndex(int position, int spanCount)

Returns the final span index of the provided position.

int
getSpanSize(int position)

Returns the number of span occupied by the item at position.

Inherited methods

From androidx.recyclerview.widget.GridLayoutManager.SpanSizeLookup
int
getSpanGroupIndex(int adapterPosition, int spanCount)

Returns the index of the group this position belongs.

void

Clears the span group index cache.

void

Clears the span index cache.

boolean

Returns whether results of getSpanGroupIndex method are cached or not.

boolean

Returns whether results of getSpanIndex method are cached or not.

void
setSpanGroupIndexCacheEnabled(boolean cacheSpanGroupIndices)

Sets whether the results of getSpanGroupIndex method should be cached or not.

void
setSpanIndexCacheEnabled(boolean cacheSpanIndices)

Sets whether the results of getSpanIndex method should be cached or not.

Public constructors

DefaultSpanSizeLookup

Added in 1.0.0
public DefaultSpanSizeLookup()

Public methods

getSpanIndex

public int getSpanIndex(int position, int spanCount)

Returns the final span index of the provided position.

If getOrientation is VERTICAL, this is a column value. If getOrientation is HORIZONTAL, this is a row value.

If you have a faster way to calculate span index for your items, you should override this method. Otherwise, you should enable span index cache (setSpanIndexCacheEnabled) for better performance. When caching is disabled, default implementation traverses all items from 0 to position. When caching is enabled, it calculates from the closest cached value before the position.

If you override this method, you need to make sure it is consistent with getSpanSize. GridLayoutManager does not call this method for each item. It is called only for the reference item and rest of the items are assigned to spans based on the reference item. For example, you cannot assign a position to span 2 while span 1 is empty.

Note that span offsets always start with 0 and are not affected by RTL.

Parameters
int position

The position of the item

int spanCount

The total number of spans in the grid

Returns
int

The final span position of the item. Should be between 0 (inclusive) and spanCount(exclusive)

getSpanSize

Added in 1.4.0-alpha01
public int getSpanSize(int position)

Returns the number of span occupied by the item at position.

Parameters
int position

The adapter position of the item

Returns
int

The number of spans occupied by the item at the provided position