ListRowPresenter
class ListRowPresenter : RowPresenter
| kotlin.Any | |||
| ↳ | 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 |
|---|
|
A task on the ListRowPresenter.ViewHolder that can select an item by position in the HorizontalGridView and perform an optional item task on it. |
|
ViewHolder for the ListRowPresenter. |
Public constructors |
|---|
|
Constructs a ListRowPresenter with defaults. |
ListRowPresenter(focusZoomFactor: Int)Constructs a ListRowPresenter with the given parameters. |
ListRowPresenter(focusZoomFactor: Int, useFocusDimmer: Boolean)Constructs a ListRowPresenter with the given parameters. |
Public functions |
|
|---|---|
Boolean |
Returns true if rounded corners are enabled for children of this row. |
Unit |
enableChildRoundedCorners(enable: Boolean)Enables or disabled rounded corners on children of this row. |
Unit |
freeze(holder: RowPresenter.ViewHolder, freeze: Boolean)Freezes/unfreezes the row, typically used when a transition starts/ends. |
Int |
Returns the expanded row height for rows created by this Presenter. |
Int |
Returns the zoom factor used for focus highlighting. |
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. |
Boolean |
Returns true if child shadow is enabled. |
Int |
This function is deprecated. use |
Boolean |
Returns true if the focus dimmer is used for focus highlighting; false otherwise. |
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 |
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. |
Unit |
setEntranceTransitionState(Changes the visibility of views. |
Unit |
setExpandedRowHeight(rowHeight: Int)Sets the expanded row height for rows created by this Presenter. |
Unit |
setHoverCardPresenterSelector(selector: PresenterSelector!)Sets the |
Unit |
setKeepChildForeground(keep: Boolean)When ListRowPresenter applies overlay color on the child, it may change child's foreground Drawable. |
Unit |
setNumRows(numRows: Int)Sets the numbers of rows for rendering the list of items. |
Unit |
setRecycledPoolSize(presenter: Presenter!, size: Int)Sets the recycled pool size for the given presenter. |
Unit |
setRowHeight(rowHeight: Int)Sets the row height for rows created by this Presenter. |
Unit |
setShadowEnabled(enabled: Boolean)Enables or disables child shadow. |
Protected functions |
|
|---|---|
Unit |
applySelectLevelToChild(Applies select level to a child. |
RowPresenter.ViewHolder! |
createRowViewHolder(parent: ViewGroup!)Called to create a ViewHolder object for a Row. |
ShadowOverlayHelper.Options! |
Create ShadowOverlayHelper Options. |
Unit |
dispatchItemSelectedListener(Dispatch item selected event using current selected item in the |
Unit |
Called after a |
Unit |
onBindRowViewHolder(holder: RowPresenter.ViewHolder, item: Any)Binds the given row object to the given ViewHolder. |
Unit |
onRowViewExpanded(holder: RowPresenter.ViewHolder!, expanded: Boolean)Called when the row view's expanded state changes. |
Unit |
onRowViewSelected(holder: RowPresenter.ViewHolder!, selected: Boolean)Called when the given row view changes selection state. |
Unit |
onSelectLevelChanged(holder: RowPresenter.ViewHolder!)Applies select level to header and draws a default color dim over each child of |
Unit |
Unbinds the given ViewHolder. |
Inherited Constants |
||||||||
|---|---|---|---|---|---|---|---|---|
|
Inherited functions |
||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||
|
Public constructors
ListRowPresenter
ListRowPresenter()
Constructs a ListRowPresenter with defaults. Uses ZOOM_FACTOR_MEDIUM for focus zooming and disabled dimming on focus.
ListRowPresenter
ListRowPresenter(focusZoomFactor: Int)
Constructs a ListRowPresenter with the given parameters.
| Parameters | |
|---|---|
focusZoomFactor: Int |
Controls the zoom factor used when an item view is focused. One of |
ListRowPresenter
ListRowPresenter(focusZoomFactor: Int, useFocusDimmer: Boolean)
Constructs a ListRowPresenter with the given parameters.
| Parameters | |
|---|---|
focusZoomFactor: Int |
Controls the zoom factor used when an item view is focused. One of |
useFocusDimmer: Boolean |
determines if the FocusHighlighter will use the dimmer |
Public functions
areChildRoundedCornersEnabled
fun areChildRoundedCornersEnabled(): Boolean
Returns true if rounded corners are enabled for children of this row.
enableChildRoundedCorners
fun enableChildRoundedCorners(enable: Boolean): Unit
Enables or disabled rounded corners on children of this row. Supported on Android SDK >= L.
freeze
fun freeze(holder: RowPresenter.ViewHolder, freeze: Boolean): Unit
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
fun getExpandedRowHeight(): Int
Returns the expanded row height for rows created by this Presenter.
getFocusZoomFactor
fun getFocusZoomFactor(): Int
Returns the zoom factor used for focus highlighting.
getHoverCardPresenterSelector
fun getHoverCardPresenterSelector(): PresenterSelector!
Returns the PresenterSelector used for showing a select object in a hover card.
getRecycledPoolSize
fun getRecycledPoolSize(presenter: Presenter!): Int
Returns the recycled pool size for the given presenter.
getRowHeight
fun getRowHeight(): Int
Returns the row height for list rows created by this Presenter.
getShadowEnabled
fun getShadowEnabled(): Boolean
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
fun isFocusDimmerUsed(): Boolean
Returns true if the focus dimmer is used for focus highlighting; false otherwise.
isKeepChildForeground
fun isKeepChildForeground(): Boolean
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
fun isUsingDefaultListSelectEffect(): Boolean
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
fun isUsingDefaultSelectEffect(): Boolean
ListRowPresenter overrides the default select effect of RowPresenter and return false.
isUsingDefaultShadow
fun isUsingDefaultShadow(): Boolean
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
fun isUsingOutlineClipping(context: Context!): Boolean
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
fun isUsingZOrder(context: Context!): Boolean
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
fun setEntranceTransitionState(
holder: RowPresenter.ViewHolder,
afterEntrance: Boolean
): Unit
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 | |
|---|---|
holder: RowPresenter.ViewHolder |
The ViewHolder of the row. |
afterEntrance: Boolean |
true if children of row participating in entrance transition should be set to visible, false otherwise. |
setExpandedRowHeight
fun setExpandedRowHeight(rowHeight: Int): Unit
Sets the expanded row height for rows created by this Presenter. If not set, expanded rows have the same height as unexpanded rows.
| Parameters | |
|---|---|
rowHeight: Int |
The row height in to use when the row is expanded, in pixels, or WRAP_CONTENT, or 0 to use the default. |
setHoverCardPresenterSelector
fun setHoverCardPresenterSelector(selector: PresenterSelector!): Unit
Sets the PresenterSelector used for showing a select object in a hover card.
setKeepChildForeground
fun setKeepChildForeground(keep: Boolean): Unit
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 | |
|---|---|
keep: Boolean |
true if keep foreground of child of this row, false ListRowPresenter might change the foreground of the child. |
setNumRows
fun setNumRows(numRows: Int): Unit
Sets the numbers of rows for rendering the list of items. By default, it is set to 1.
setRecycledPoolSize
fun setRecycledPoolSize(presenter: Presenter!, size: Int): Unit
Sets the recycled pool size for the given presenter.
setRowHeight
fun setRowHeight(rowHeight: Int): Unit
Sets the row height for rows created by this Presenter. Rows created before calling this method will not be updated.
| Parameters | |
|---|---|
rowHeight: Int |
Row height in pixels, or WRAP_CONTENT, or 0 to use the default height. |
setShadowEnabled
fun setShadowEnabled(enabled: Boolean): Unit
Enables or disables child shadow. This is not only for enable/disable default shadow implementation but also subclass must respect this flag.
Protected functions
applySelectLevelToChild
protected fun applySelectLevelToChild(
rowViewHolder: ListRowPresenter.ViewHolder!,
childView: View!
): Unit
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 | |
|---|---|
rowViewHolder: ListRowPresenter.ViewHolder! |
The ViewHolder of the Row |
childView: View! |
The child of |
createRowViewHolder
protected fun createRowViewHolder(parent: ViewGroup!): RowPresenter.ViewHolder!
Called to create a ViewHolder object for a Row. Subclasses will override this method to return a different concrete ViewHolder object.
| Parameters | |
|---|---|
parent: ViewGroup! |
The parent View for the Row's view holder. |
| Returns | |
|---|---|
RowPresenter.ViewHolder! |
A ViewHolder for the Row's View. |
createShadowOverlayOptions
protected fun createShadowOverlayOptions(): ShadowOverlayHelper.Options!
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 fun dispatchItemSelectedListener(
holder: RowPresenter.ViewHolder!,
selected: Boolean
): Unit
Dispatch item selected event using current selected item in the HorizontalGridView. The method should only be called from onRowViewSelected().
initializeRowViewHolder
protected fun initializeRowViewHolder(vh: RowPresenter.ViewHolder!): Unit
Called after a RowPresenter.ViewHolder is created for a Row. Subclasses may override this method and start by calling super.initializeRowViewHolder(ViewHolder).
| Parameters | |
|---|---|
vh: RowPresenter.ViewHolder! |
The ViewHolder to initialize for the Row. |
onBindRowViewHolder
protected fun onBindRowViewHolder(holder: RowPresenter.ViewHolder, item: Any): Unit
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 fun onRowViewExpanded(holder: RowPresenter.ViewHolder!, expanded: Boolean): Unit
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 fun onRowViewSelected(holder: RowPresenter.ViewHolder!, selected: Boolean): Unit
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 fun onSelectLevelChanged(holder: RowPresenter.ViewHolder!): Unit
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 fun onUnbindRowViewHolder(holder: RowPresenter.ViewHolder): Unit
Unbinds the given ViewHolder. Derived classes of RowPresenter overriding onUnbindRowViewHolder must call through the super class's implementation of this method.