ListRowPresenter
public class ListRowPresenter extends RowPresenter
| java.lang.Object | |||
| ↳ | androidx.leanback.widget.Presenter | ||
| ↳ | androidx.leanback.widget.RowPresenter | ||
| ↳ | androidx.leanback.widget.ListRowPresenter |
ListRowPresenter renders ListRow using a HorizontalGridView hosted in a ListRowView.
Hover card
Optionally,setHoverCardPresenterSelector can be used to display a view for the currently focused list item below the rendered list. This view is known as a hover card.
Row selection animation
ListRowPresenter disablesRowPresenter's default full row dimming effect and draws a dim overlay on each child individually. A subclass may disable the overlay on each child by overriding isUsingDefaultListSelectEffect to return false and write its own child dim effect in applySelectLevelToChild.
Shadow
ListRowPresenter applies a default shadow to each child view. CallsetShadowEnabled to disable shadows. A subclass may override and return false in isUsingDefaultShadow and replace with its own shadow implementation.
Summary
Nested types |
|---|
public class ListRowPresenter.SelectItemViewHolderTask extends Presenter.ViewHolderTaskA task on the ListRowPresenter.ViewHolder that can select an item by position in the HorizontalGridView and perform an optional item task on it. |
public class ListRowPresenter.ViewHolder extends RowPresenter.ViewHolderViewHolder for the ListRowPresenter. |
Public constructors |
|---|
|
Constructs a ListRowPresenter with defaults. |
ListRowPresenter(int focusZoomFactor)Constructs a ListRowPresenter with the given parameters. |
ListRowPresenter(int focusZoomFactor, boolean useFocusDimmer)Constructs a ListRowPresenter with the given parameters. |
Public methods |
|
|---|---|
final boolean |
Returns true if rounded corners are enabled for children of this row. |
final void |
enableChildRoundedCorners(boolean enable)Enables or disabled rounded corners on children of this row. |
void |
freeze(@NonNull RowPresenter.ViewHolder holder, boolean freeze)Freezes/unfreezes the row, typically used when a transition starts/ends. |
int |
Returns the expanded row height for rows created by this Presenter. |
final int |
Returns the zoom factor used for focus highlighting. |
final PresenterSelector |
Returns the |
int |
getRecycledPoolSize(Presenter presenter)Returns the recycled pool size for the given presenter. |
int |
Returns the row height for list rows created by this Presenter. |
final boolean |
Returns true if child shadow is enabled. |
final int |
This method is deprecated. use |
final boolean |
Returns true if the focus dimmer is used for focus highlighting; false otherwise. |
final boolean |
Returns true if keeps foreground of child of this row, false otherwise. |
boolean |
Returns true so that default select effect is applied to each individual child of |
final boolean |
ListRowPresenter overrides the default select effect of |
boolean |
Default implementation returns true if SDK version >= 21, shadow (either static or z-order based) will be applied to each individual child of |
boolean |
isUsingOutlineClipping(Context context)Returns true if leanback view outline is enabled on the system or false otherwise. |
boolean |
isUsingZOrder(Context context)Returns true if SDK >= L, where Z shadow is enabled so that Z order is enabled on each child of horizontal list. |
void |
setEntranceTransitionState(Changes the visibility of views. |
void |
setExpandedRowHeight(int rowHeight)Sets the expanded row height for rows created by this Presenter. |
final void |
Sets the |
final void |
setKeepChildForeground(boolean keep)When ListRowPresenter applies overlay color on the child, it may change child's foreground Drawable. |
void |
setNumRows(int numRows)Sets the numbers of rows for rendering the list of items. |
void |
setRecycledPoolSize(Presenter presenter, int size)Sets the recycled pool size for the given presenter. |
void |
setRowHeight(int rowHeight)Sets the row height for rows created by this Presenter. |
final void |
setShadowEnabled(boolean enabled)Enables or disables child shadow. |
Protected methods |
|
|---|---|
void |
applySelectLevelToChild(Applies select level to a child. |
RowPresenter.ViewHolder |
createRowViewHolder(ViewGroup parent)Called to create a ViewHolder object for a Row. |
ShadowOverlayHelper.Options |
Create ShadowOverlayHelper Options. |
void |
dispatchItemSelectedListener(Dispatch item selected event using current selected item in the |
void |
Called after a |
void |
onBindRowViewHolder(Binds the given row object to the given ViewHolder. |
void |
onRowViewExpanded(RowPresenter.ViewHolder holder, boolean expanded)Called when the row view's expanded state changes. |
void |
onRowViewSelected(RowPresenter.ViewHolder holder, boolean selected)Called when the given row view changes selection state. |
void |
Applies select level to header and draws a default color dim over each child of |
void |
Unbinds the given ViewHolder. |
Inherited Constants |
||||||||
|---|---|---|---|---|---|---|---|---|
|
Inherited methods |
||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||
|
Public constructors
ListRowPresenter
public ListRowPresenter()
Constructs a ListRowPresenter with defaults. Uses ZOOM_FACTOR_MEDIUM for focus zooming and disabled dimming on focus.
ListRowPresenter
public ListRowPresenter(int focusZoomFactor)
Constructs a ListRowPresenter with the given parameters.
| Parameters | |
|---|---|
int focusZoomFactor |
Controls the zoom factor used when an item view is focused. One of |
ListRowPresenter
public ListRowPresenter(int focusZoomFactor, boolean useFocusDimmer)
Constructs a ListRowPresenter with the given parameters.
| Parameters | |
|---|---|
int focusZoomFactor |
Controls the zoom factor used when an item view is focused. One of |
boolean useFocusDimmer |
determines if the FocusHighlighter will use the dimmer |
Public methods
areChildRoundedCornersEnabled
public final boolean areChildRoundedCornersEnabled()
Returns true if rounded corners are enabled for children of this row.
enableChildRoundedCorners
public final void enableChildRoundedCorners(boolean enable)
Enables or disabled rounded corners on children of this row. Supported on Android SDK >= L.
freeze
public void freeze(@NonNull RowPresenter.ViewHolder holder, boolean freeze)
Freezes/unfreezes the row, typically used when a transition starts/ends. This method is called by the fragment, it should not call it directly by the application.
getExpandedRowHeight
public int getExpandedRowHeight()
Returns the expanded row height for rows created by this Presenter.
getFocusZoomFactor
public final int getFocusZoomFactor()
Returns the zoom factor used for focus highlighting.
getHoverCardPresenterSelector
public final PresenterSelector getHoverCardPresenterSelector()
Returns the PresenterSelector used for showing a select object in a hover card.
getRecycledPoolSize
public int getRecycledPoolSize(Presenter presenter)
Returns the recycled pool size for the given presenter.
getRowHeight
public int getRowHeight()
Returns the row height for list rows created by this Presenter.
getShadowEnabled
public final boolean getShadowEnabled()
Returns true if child shadow is enabled. This is not only for enable/disable default shadow implementation but also subclass must respect this flag.
isFocusDimmerUsed
public final boolean isFocusDimmerUsed()
Returns true if the focus dimmer is used for focus highlighting; false otherwise.
isKeepChildForeground
public final boolean isKeepChildForeground()
Returns true if keeps foreground of child of this row, false otherwise. When ListRowPresenter applies overlay color on the child, it may change child's foreground Drawable. If application uses child's foreground for other purposes such as ripple effect, it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
| Returns | |
|---|---|
boolean |
true if keeps foreground of child of this row, false otherwise. |
isUsingDefaultListSelectEffect
public boolean isUsingDefaultListSelectEffect()
Returns true so that default select effect is applied to each individual child of HorizontalGridView. Subclass may return false to disable the default implementation and implement applySelectLevelToChild.
isUsingDefaultSelectEffect
public final boolean isUsingDefaultSelectEffect()
ListRowPresenter overrides the default select effect of RowPresenter and return false.
isUsingDefaultShadow
public boolean isUsingDefaultShadow()
Default implementation returns true if SDK version >= 21, shadow (either static or z-order based) will be applied to each individual child of HorizontalGridView. Subclass may return false to disable default implementation of shadow and provide its own.
isUsingOutlineClipping
public boolean isUsingOutlineClipping(Context context)
Returns true if leanback view outline is enabled on the system or false otherwise. When false, rounded corner will not be enabled even enableChildRoundedCorners is called with true.
| Parameters | |
|---|---|
Context context |
Context to retrieve system settings. |
| Returns | |
|---|---|
boolean |
True if leanback view outline is enabled on the system or false otherwise. |
isUsingZOrder
public boolean isUsingZOrder(Context context)
Returns true if SDK >= L, where Z shadow is enabled so that Z order is enabled on each child of horizontal list. If subclass returns false in isUsingDefaultShadow() and does not use Z-shadow on SDK >= L, it should override isUsingZOrder() return false.
setEntranceTransitionState
public void setEntranceTransitionState(
@NonNull RowPresenter.ViewHolder holder,
boolean afterEntrance
)
Changes the visibility of views. The entrance transition will be run against the views that change visibilities. A subclass may override and begin with calling super.setEntranceTransitionState(). This method is called by the fragment, it should not be called directly by the application.
| Parameters | |
|---|---|
@NonNull RowPresenter.ViewHolder holder |
The ViewHolder of the row. |
boolean afterEntrance |
true if children of row participating in entrance transition should be set to visible, false otherwise. |
setExpandedRowHeight
public void setExpandedRowHeight(int rowHeight)
Sets the expanded row height for rows created by this Presenter. If not set, expanded rows have the same height as unexpanded rows.
| Parameters | |
|---|---|
int rowHeight |
The row height in to use when the row is expanded, in pixels, or WRAP_CONTENT, or 0 to use the default. |
setHoverCardPresenterSelector
public final void setHoverCardPresenterSelector(PresenterSelector selector)
Sets the PresenterSelector used for showing a select object in a hover card.
setKeepChildForeground
public final void setKeepChildForeground(boolean keep)
When ListRowPresenter applies overlay color on the child, it may change child's foreground Drawable. If application uses child's foreground for other purposes such as ripple effect, it needs tell ListRowPresenter to keep the child's foreground. The default value is true.
| Parameters | |
|---|---|
boolean keep |
true if keep foreground of child of this row, false ListRowPresenter might change the foreground of the child. |
setNumRows
public void setNumRows(int numRows)
Sets the numbers of rows for rendering the list of items. By default, it is set to 1.
setRecycledPoolSize
public void setRecycledPoolSize(Presenter presenter, int size)
Sets the recycled pool size for the given presenter.
setRowHeight
public void setRowHeight(int rowHeight)
Sets the row height for rows created by this Presenter. Rows created before calling this method will not be updated.
| Parameters | |
|---|---|
int rowHeight |
Row height in pixels, or WRAP_CONTENT, or 0 to use the default height. |
setShadowEnabled
public final void setShadowEnabled(boolean enabled)
Enables or disables child shadow. This is not only for enable/disable default shadow implementation but also subclass must respect this flag.
Protected methods
applySelectLevelToChild
protected void applySelectLevelToChild(
ListRowPresenter.ViewHolder rowViewHolder,
View childView
)
Applies select level to a child. Default implementation draws a default color dim over each child of HorizontalGridView. This method is called on all children in onSelectLevelChanged and when a child is attached to HorizontalGridView.
Subclass may disable the default implementation by override isUsingDefaultListSelectEffect to return false and deal with the individual item select level by itself.
| Parameters | |
|---|---|
ListRowPresenter.ViewHolder rowViewHolder |
The ViewHolder of the Row |
View childView |
The child of |
createRowViewHolder
protected RowPresenter.ViewHolder createRowViewHolder(ViewGroup parent)
Called to create a ViewHolder object for a Row. Subclasses will override this method to return a different concrete ViewHolder object.
| Parameters | |
|---|---|
ViewGroup parent |
The parent View for the Row's view holder. |
| Returns | |
|---|---|
RowPresenter.ViewHolder |
A ViewHolder for the Row's View. |
createShadowOverlayOptions
protected ShadowOverlayHelper.Options createShadowOverlayOptions()
Create ShadowOverlayHelper Options. Subclass may override. e.g.
return new ShadowOverlayHelper.Options().roundedCornerRadius(10);
| Returns | |
|---|---|
ShadowOverlayHelper.Options |
The options to be used for shadow, overlay and rounded corner. |
dispatchItemSelectedListener
protected void dispatchItemSelectedListener(
RowPresenter.ViewHolder holder,
boolean selected
)
Dispatch item selected event using current selected item in the HorizontalGridView. The method should only be called from onRowViewSelected().
initializeRowViewHolder
protected void initializeRowViewHolder(RowPresenter.ViewHolder vh)
Called after a RowPresenter.ViewHolder is created for a Row. Subclasses may override this method and start by calling super.initializeRowViewHolder(ViewHolder).
| Parameters | |
|---|---|
RowPresenter.ViewHolder vh |
The ViewHolder to initialize for the Row. |
onBindRowViewHolder
protected void onBindRowViewHolder(
@NonNull RowPresenter.ViewHolder holder,
@NonNull Object item
)
Binds the given row object to the given ViewHolder. Derived classes of RowPresenter overriding onBindRowViewHolder must call through the super class's implementation of this method.
onRowViewExpanded
protected void onRowViewExpanded(RowPresenter.ViewHolder holder, boolean expanded)
Called when the row view's expanded state changes. A subclass may override this method to respond to expanded state changes of a Row. The default implementation will hide/show the header view. Subclasses may make visual changes to the Row View but must not create animation on the Row view.
onRowViewSelected
protected void onRowViewSelected(RowPresenter.ViewHolder holder, boolean selected)
Called when the given row view changes selection state. A subclass may override this to respond to selected state changes of a Row. A subclass may make visual changes to Row view but must not create animation on the Row view.
onSelectLevelChanged
protected void onSelectLevelChanged(RowPresenter.ViewHolder holder)
Applies select level to header and draws a default color dim over each child of HorizontalGridView.
Subclass may override this method and starts with calling super if it has views to apply select effect other than header and HorizontalGridView. To override the default color dim over each child of HorizontalGridView, app should override isUsingDefaultListSelectEffect to return false and override applySelectLevelToChild.
onUnbindRowViewHolder
protected void onUnbindRowViewHolder(@NonNull RowPresenter.ViewHolder holder)
Unbinds the given ViewHolder. Derived classes of RowPresenter overriding onUnbindRowViewHolder must call through the super class's implementation of this method.