OrientationHelper
public abstract class OrientationHelper
Helper class for LayoutManagers to abstract measurements depending on the View's orientation.
It is developed to easily support vertical and horizontal orientations in a LayoutManager but can also be used to abstract calls around view bounds and child measurements with margins and decorations.
Summary
Constants |
|
|---|---|
static final int |
HORIZONTAL = 0 |
static final int |
VERTICAL = 1 |
Protected fields |
|
|---|---|
final RecyclerView.LayoutManager |
Public methods |
|
|---|---|
static OrientationHelper |
createHorizontalHelper(RecyclerView.LayoutManager layoutManager)Creates a horizontal OrientationHelper for the given LayoutManager. |
static OrientationHelper |
createOrientationHelper(Creates an OrientationHelper for the given LayoutManager and orientation. |
static OrientationHelper |
createVerticalHelper(RecyclerView.LayoutManager layoutManager)Creates a vertical OrientationHelper for the given LayoutManager. |
abstract int |
getDecoratedEnd(View view)Returns the end of the view including its decoration and margin. |
abstract int |
getDecoratedMeasurement(View view)Returns the space occupied by this View in the current orientation including decorations and margins. |
abstract int |
Returns the space occupied by this View in the perpendicular orientation including decorations and margins. |
abstract int |
getDecoratedStart(View view)Returns the start of the view including its decoration and margin. |
abstract int |
getEnd()Returns the end position of the layout without taking padding into account. |
abstract int |
Returns the end position of the layout after the end padding is removed. |
abstract int |
Returns the padding at the end of the layout. |
RecyclerView.LayoutManager |
Returns the |
abstract int |
getMode()Returns the MeasureSpec mode for the current orientation from the LayoutManager. |
abstract int |
Returns the MeasureSpec mode for the perpendicular orientation from the LayoutManager. |
abstract int |
Returns the start position of the layout after the start padding is added. |
abstract int |
Returns the total space to layout. |
int |
Returns the layout space change between the previous layout pass and current layout pass. |
abstract int |
Returns the end of the View after its matrix transformations are applied to its layout position. |
abstract int |
Returns the start of the View after its matrix transformations are applied to its layout position. |
abstract void |
offsetChild(View view, int offset)Offsets the child in this orientation. |
abstract void |
offsetChildren(int amount)Offsets all children's positions by the given amount. |
void |
Call this method after onLayout method is complete if state is NOT pre-layout. |
Constants
Protected fields
Public methods
createHorizontalHelper
public static OrientationHelper createHorizontalHelper(RecyclerView.LayoutManager layoutManager)
Creates a horizontal OrientationHelper for the given LayoutManager.
| Parameters | |
|---|---|
RecyclerView.LayoutManager layoutManager |
The LayoutManager to attach to. |
| Returns | |
|---|---|
OrientationHelper |
A new OrientationHelper |
createOrientationHelper
public static OrientationHelper createOrientationHelper(
RecyclerView.LayoutManager layoutManager,
int orientation
)
Creates an OrientationHelper for the given LayoutManager and orientation.
| Parameters | |
|---|---|
RecyclerView.LayoutManager layoutManager |
LayoutManager to attach to |
int orientation |
Desired orientation. Should be |
| Returns | |
|---|---|
OrientationHelper |
A new OrientationHelper |
createVerticalHelper
public static OrientationHelper createVerticalHelper(RecyclerView.LayoutManager layoutManager)
Creates a vertical OrientationHelper for the given LayoutManager.
| Parameters | |
|---|---|
RecyclerView.LayoutManager layoutManager |
The LayoutManager to attach to. |
| Returns | |
|---|---|
OrientationHelper |
A new OrientationHelper |
getDecoratedEnd
public abstract int getDecoratedEnd(View view)
Returns the end of the view including its decoration and margin.
For example, for the horizontal helper, if a View's right is at pixel 200, has 2px right decoration and 3px right margin, returned value will be 205.
| Parameters | |
|---|---|
View view |
The view element to check |
| Returns | |
|---|---|
int |
The last pixel of the element |
| See also | |
|---|---|
getDecoratedStart |
getDecoratedMeasurement
public abstract int getDecoratedMeasurement(View view)
Returns the space occupied by this View in the current orientation including decorations and margins.
| Parameters | |
|---|---|
View view |
The view element to check |
| Returns | |
|---|---|
int |
Total space occupied by this view |
| See also | |
|---|---|
getDecoratedMeasurementInOther |
getDecoratedMeasurementInOther
public abstract int getDecoratedMeasurementInOther(View view)
Returns the space occupied by this View in the perpendicular orientation including decorations and margins.
| Parameters | |
|---|---|
View view |
The view element to check |
| Returns | |
|---|---|
int |
Total space occupied by this view in the perpendicular orientation to current one |
| See also | |
|---|---|
getDecoratedMeasurement |
getDecoratedStart
public abstract int getDecoratedStart(View view)
Returns the start of the view including its decoration and margin.
For example, for the horizontal helper, if a View's left is at pixel 20, has 2px left decoration and 3px left margin, returned value will be 15px.
| Parameters | |
|---|---|
View view |
The view element to check |
| Returns | |
|---|---|
int |
The first pixel of the element |
| See also | |
|---|---|
getDecoratedEnd |
getEnd
public abstract int getEnd()
Returns the end position of the layout without taking padding into account.
| Returns | |
|---|---|
int |
The end boundary for this layout without considering padding. |
getEndAfterPadding
public abstract int getEndAfterPadding()
Returns the end position of the layout after the end padding is removed.
| Returns | |
|---|---|
int |
The end boundary for this layout. |
getEndPadding
public abstract int getEndPadding()
Returns the padding at the end of the layout. For horizontal helper, this is the right padding and for vertical helper, this is the bottom padding. This method does not check whether the layout is RTL or not.
| Returns | |
|---|---|
int |
The padding at the end of the layout. |
getLayoutManager
public RecyclerView.LayoutManager getLayoutManager()
Returns the LayoutManager that is associated with this OrientationHelper.
getMode
public abstract int getMode()
Returns the MeasureSpec mode for the current orientation from the LayoutManager.
| Returns | |
|---|---|
int |
The current measure spec mode. |
| See also | |
|---|---|
View.MeasureSpec |
|
getWidthMode |
|
getHeightMode |
getModeInOther
public abstract int getModeInOther()
Returns the MeasureSpec mode for the perpendicular orientation from the LayoutManager.
| Returns | |
|---|---|
int |
The current measure spec mode. |
| See also | |
|---|---|
View.MeasureSpec |
|
getWidthMode |
|
getHeightMode |
getStartAfterPadding
public abstract int getStartAfterPadding()
Returns the start position of the layout after the start padding is added.
| Returns | |
|---|---|
int |
The very first pixel we can draw. |
getTotalSpace
public abstract int getTotalSpace()
Returns the total space to layout. This number is the difference between getEndAfterPadding and getStartAfterPadding.
| Returns | |
|---|---|
int |
Total space to layout children |
getTotalSpaceChange
public int getTotalSpaceChange()
Returns the layout space change between the previous layout pass and current layout pass.
Make sure you call onLayoutComplete at the end of your LayoutManager's onLayoutChildren method.
| Returns | |
|---|---|
int |
The difference between the current total space and previous layout's total space. |
| See also | |
|---|---|
onLayoutComplete |
getTransformedEndWithDecoration
public abstract int getTransformedEndWithDecoration(View view)
Returns the end of the View after its matrix transformations are applied to its layout position.
This method is useful when trying to detect the visible edge of a View.
It includes the decorations but does not include the margins.
| Parameters | |
|---|---|
View view |
The view whose transformed end will be returned |
| Returns | |
|---|---|
int |
The end of the View after its decor insets and transformation matrix is applied to its position |
| See also | |
|---|---|
getTransformedBoundingBox |
getTransformedStartWithDecoration
public abstract int getTransformedStartWithDecoration(View view)
Returns the start of the View after its matrix transformations are applied to its layout position.
This method is useful when trying to detect the visible edge of a View.
It includes the decorations but does not include the margins.
| Parameters | |
|---|---|
View view |
The view whose transformed start will be returned |
| Returns | |
|---|---|
int |
The start of the View after its decor insets and transformation matrix is applied to its position |
| See also | |
|---|---|
getTransformedBoundingBox |
offsetChild
public abstract void offsetChild(View view, int offset)
Offsets the child in this orientation.
| Parameters | |
|---|---|
View view |
View to offset |
int offset |
offset amount |
offsetChildren
public abstract void offsetChildren(int amount)
Offsets all children's positions by the given amount.
| Parameters | |
|---|---|
int amount |
Value to add to each child's layout parameters |
onLayoutComplete
public void onLayoutComplete()
Call this method after onLayout method is complete if state is NOT pre-layout. This method records information like layout bounds that might be useful in the next layout calculations.