RowPresenter
public abstract class RowPresenter extends Presenter
AbstractMediaItemPresenter |
Abstract |
AbstractMediaListHeaderPresenter |
Abstract presenter class for rendering the header for a list of media items in a playlist. |
DetailsOverviewRowPresenter |
This class is deprecated. |
FullWidthDetailsOverviewRowPresenter |
Renders a |
ListRowPresenter |
ListRowPresenter renders |
PlaybackRowPresenter |
Subclass of |
PlaybackControlsRowPresenter |
A PlaybackControlsRowPresenter renders a |
PlaybackTransportRowPresenter |
A PlaybackTransportRowPresenter renders a |
An abstract Presenter that renders an Object in RowsFragment, the object can be subclass Row or a generic one. When the object is not Row class, getRow returns null.
Customize UI widgets
When a subclass of RowPresenter adds UI widgets, it should subclassRowPresenter.ViewHolder and override createRowViewHolder and initializeRowViewHolder. The subclass must use layout id "row_content" for the widget that will be aligned to the title of any HeadersFragment that may exist in the parent fragment. RowPresenter contains an optional and replaceable RowHeaderPresenter that renders the header. You can disable the default rendering or replace the Presenter with a new header presenter by calling setHeaderPresenter.
UI events from fragments
RowPresenter receives calls from its parent (typically a Fragment) when:- A row is selected via
setRowViewSelected. The event is triggered immediately when there is a row selection change before the selection animation is started. Selected status may control activated status of the row (see "Activated status" below). Subclasses of RowPresenter may overrideonRowViewSelected. - A row is expanded to full height via
setRowViewExpandedwhen BrowseFragment hides fast lane on the left. The event is triggered immediately before the expand animation is started. Row title is shown when row is expanded. Expanded status may control activated status of the row (see "Activated status" below). Subclasses of RowPresenter may overrideonRowViewExpanded.
Activated status
The activated status of a row is applied to the row view and its children viasetActivated. The activated status is typically used to control BaseCardView info region visibility. The row's activated status can be controlled by selected status and/or expanded status. Call setSyncActivatePolicy and choose one of the four policies:
SYNC_ACTIVATED_TO_EXPANDEDActivated status is synced with row expanded statusSYNC_ACTIVATED_TO_SELECTEDActivated status is synced with row selected statusSYNC_ACTIVATED_TO_EXPANDED_AND_SELECTEDActivated status is set to true when both expanded and selected status are trueSYNC_ACTIVATED_CUSTOMActivated status is not controlled by selected status or expanded status, application can control activated status by its own. Application should callsetActivatedto change activated status of row view.
User events
RowPresenter providesOnItemViewSelectedListener and OnItemViewClickedListener. If a subclass wants to add its own View.OnFocusChangeListener or View.OnClickListener, it must do that in createRowViewHolder to be properly chained by the library. Adding View listeners after createRowViewHolder is undefined and may result in incorrect behavior by the library's listeners.
Selection animation
When a user scrolls through rows, a fragment will initiate animation and call setSelectLevel with float value between 0 and 1. By default, the RowPresenter draws a dim overlay on top of the row view for views that are not selected. Subclasses may override this default effect by having isUsingDefaultSelectEffect return false and overriding onSelectLevelChanged to apply a different selection effect.
Call setSelectEffectEnabled to enable/disable the select effect, This will not only enable/disable the default dim effect but also subclasses must respect this flag as well.
Summary
Nested types |
|---|
public class RowPresenter.ViewHolder extends Presenter.ViewHolderA ViewHolder for a |
Constants |
|
|---|---|
static final int |
Don't synchronize row view activated status with selected status or expanded status, application will do its own through |
static final int |
Synchronizes row view's activated status to expand status of the row view holder. |
static final int |
Sets the row view's activated status to true when both expand and selected are true. |
static final int |
Synchronizes row view's activated status to selected status of the row view holder. |
Public constructors |
|---|
|
Constructs a RowPresenter. |
Public methods |
|
|---|---|
void |
freeze(@NonNull RowPresenter.ViewHolder holder, boolean freeze)Freezes/unfreezes the row, typically used when a transition starts/ends. |
final RowHeaderPresenter |
Returns the Presenter used for rendering the header, or null if none has been set. |
final RowPresenter.ViewHolder |
getRowViewHolder(Presenter.ViewHolder holder)Returns the |
final boolean |
Returns true if the row selection effect is enabled. |
final float |
Returns the current select level. |
final int |
Returns the policy of updating row view activated status. |
boolean |
Returns true if this RowPresenter is using the default dimming effect. |
final void |
onBindViewHolder(Binds a |
final Presenter.ViewHolder |
onCreateViewHolder(ViewGroup parent)Creates a new |
final void |
onUnbindViewHolder(@NonNull Presenter.ViewHolder viewHolder)Unbinds a |
final void |
Called when a view created by this presenter has been attached to a window. |
final void |
Called when a view created by this presenter has been detached from its window. |
void |
setEntranceTransitionState(Changes the visibility of views. |
final void |
setHeaderPresenter(RowHeaderPresenter headerPresenter)Sets the Presenter used for rendering the header. |
final void |
setRowViewExpanded(Presenter.ViewHolder holder, boolean expanded)Sets the expanded state of a Row view. |
final void |
setRowViewSelected(Presenter.ViewHolder holder, boolean selected)Sets the selected state of a Row view. |
final void |
setSelectEffectEnabled(boolean applyDimOnSelect)Enables or disables the row selection effect. |
final void |
setSelectLevel(Presenter.ViewHolder vh, float level)Sets the current select level to a value between 0 (unselected) and 1 (selected). |
final void |
setSyncActivatePolicy(int syncActivatePolicy)Sets the policy of updating row view activated status. |
Protected methods |
|
|---|---|
abstract @NonNull RowPresenter.ViewHolder |
createRowViewHolder(@NonNull ViewGroup parent)Called to create a ViewHolder object for a Row. |
void |
dispatchItemSelectedListener(This method is only called from |
void |
Called after a |
boolean |
Returns true if the Row view should clip its children. |
void |
onBindRowViewHolder(Binds the given row object to the given ViewHolder. |
void |
Invoked when the row view is attached to the window. |
void |
Invoked when the row view is detached from the window. |
void |
onRowViewExpanded(RowPresenter.ViewHolder vh, boolean expanded)Called when the row view's expanded state changes. |
void |
onRowViewSelected(@NonNull RowPresenter.ViewHolder vh, boolean selected)Called when the given row view changes selection state. |
void |
Callback when the select level changes. |
void |
Unbinds the given ViewHolder. |
Inherited methods |
||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
Constants
SYNC_ACTIVATED_CUSTOM
public static final int SYNC_ACTIVATED_CUSTOM = 0
Don't synchronize row view activated status with selected status or expanded status, application will do its own through setActivated.
SYNC_ACTIVATED_TO_EXPANDED
public static final int SYNC_ACTIVATED_TO_EXPANDED = 1
Synchronizes row view's activated status to expand status of the row view holder.
SYNC_ACTIVATED_TO_EXPANDED_AND_SELECTED
public static final int SYNC_ACTIVATED_TO_EXPANDED_AND_SELECTED = 3
Sets the row view's activated status to true when both expand and selected are true.
SYNC_ACTIVATED_TO_SELECTED
public static final int SYNC_ACTIVATED_TO_SELECTED = 2
Synchronizes row view's activated status to selected status of the row view holder.
Public constructors
Public methods
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.
getHeaderPresenter
public final RowHeaderPresenter getHeaderPresenter()
Returns the Presenter used for rendering the header, or null if none has been set.
getRowViewHolder
public final RowPresenter.ViewHolder getRowViewHolder(Presenter.ViewHolder holder)
Returns the RowPresenter.ViewHolder from the given RowPresenter ViewHolder.
getSelectEffectEnabled
public final boolean getSelectEffectEnabled()
Returns true if the row selection effect is enabled. This value not only determines whether the default dim implementation is used, but subclasses must also respect this flag.
getSelectLevel
public final float getSelectLevel(Presenter.ViewHolder vh)
Returns the current select level. The value will be between 0 (unselected) and 1 (selected).
getSyncActivatePolicy
public final int getSyncActivatePolicy()
Returns the policy of updating row view activated status. Can be one of:
isUsingDefaultSelectEffect
public boolean isUsingDefaultSelectEffect()
Returns true if this RowPresenter is using the default dimming effect. A subclass may (most likely) return false and override onSelectLevelChanged.
onBindViewHolder
public final void onBindViewHolder(
@NonNull Presenter.ViewHolder viewHolder,
@Nullable Object item
)
Binds a View to an item.
onCreateViewHolder
public final Presenter.ViewHolder onCreateViewHolder(ViewGroup parent)
Creates a new View.
onUnbindViewHolder
public final void onUnbindViewHolder(@NonNull Presenter.ViewHolder viewHolder)
Unbinds a View from an item. Any expensive references may be released here, and any fields that are not bound for every item should be cleared here.
onViewAttachedToWindow
public final void onViewAttachedToWindow(@NonNull Presenter.ViewHolder holder)
Called when a view created by this presenter has been attached to a window.
This can be used as a reasonable signal that the view is about to be seen by the user. If the adapter previously freed any resources in onViewDetachedFromWindow those resources should be restored here.
| Parameters | |
|---|---|
@NonNull Presenter.ViewHolder holder |
Holder of the view being attached |
onViewDetachedFromWindow
public final void onViewDetachedFromWindow(@NonNull Presenter.ViewHolder holder)
Called when a view created by this presenter has been detached from its window.
Becoming detached from the window is not necessarily a permanent condition; the consumer of an presenter's views may choose to cache views offscreen while they are not visible, attaching and detaching them as appropriate.
Any view property animations should be cancelled here or the view may fail to be recycled.| Parameters | |
|---|---|
@NonNull Presenter.ViewHolder holder |
Holder of the view being detached |
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. |
setHeaderPresenter
public final void setHeaderPresenter(RowHeaderPresenter headerPresenter)
Sets the Presenter used for rendering the header. Can be null to disable header rendering. The method must be called before creating any Row Views.
setRowViewExpanded
public final void setRowViewExpanded(Presenter.ViewHolder holder, boolean expanded)
Sets the expanded state of a Row view.
| Parameters | |
|---|---|
Presenter.ViewHolder holder |
The Row ViewHolder to set expanded state on. |
boolean expanded |
True if the Row is expanded, false otherwise. |
setRowViewSelected
public final void setRowViewSelected(Presenter.ViewHolder holder, boolean selected)
Sets the selected state of a Row view.
| Parameters | |
|---|---|
Presenter.ViewHolder holder |
The Row ViewHolder to set expanded state on. |
boolean selected |
True if the Row is expanded, false otherwise. |
setSelectEffectEnabled
public final void setSelectEffectEnabled(boolean applyDimOnSelect)
Enables or disables the row selection effect. This will not only affect the default dim effect, but subclasses must respect this flag as well.
setSelectLevel
public final void setSelectLevel(Presenter.ViewHolder vh, float level)
Sets the current select level to a value between 0 (unselected) and 1 (selected). Subclasses may override onSelectLevelChanged to respond to changes in the selected level.
setSyncActivatePolicy
public final void setSyncActivatePolicy(int syncActivatePolicy)
Sets the policy of updating row view activated status. Can be one of:
Protected methods
createRowViewHolder
protected abstract @NonNull RowPresenter.ViewHolder createRowViewHolder(@NonNull ViewGroup parent)
Called to create a ViewHolder object for a Row. Subclasses will override this method to return a different concrete ViewHolder object.
| Returns | |
|---|---|
@NonNull RowPresenter.ViewHolder |
A ViewHolder for the Row's View. |
dispatchItemSelectedListener
protected void dispatchItemSelectedListener(
RowPresenter.ViewHolder vh,
boolean selected
)
This method is only called from onRowViewSelected onRowViewSelected. The default behavior is to signal row selected events with a null item parameter. A Subclass of RowPresenter having child items should override this method and dispatch events with item information.
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. |
isClippingChildren
protected boolean isClippingChildren()
Returns true if the Row view should clip its children. The clipChildren flag is set on view in initializeRowViewHolder. Note that Slide transition or explode transition need turn off clipChildren. Default value is false.
onBindRowViewHolder
protected void onBindRowViewHolder(
@NonNull RowPresenter.ViewHolder vh,
@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.
onRowViewAttachedToWindow
protected void onRowViewAttachedToWindow(@NonNull RowPresenter.ViewHolder vh)
Invoked when the row view is attached to the window.
onRowViewDetachedFromWindow
protected void onRowViewDetachedFromWindow(@NonNull RowPresenter.ViewHolder vh)
Invoked when the row view is detached from the window.
onRowViewExpanded
protected void onRowViewExpanded(RowPresenter.ViewHolder vh, 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(@NonNull RowPresenter.ViewHolder vh, 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 vh)
Callback when the select level changes. The default implementation applies the select level to setSelectLevel when getSelectEffectEnabled is true. Subclasses may override this function and implement a different select effect. In this case, the method isUsingDefaultSelectEffect should also be overridden to disable the default dimming effect.
onUnbindRowViewHolder
protected void onUnbindRowViewHolder(@NonNull RowPresenter.ViewHolder vh)
Unbinds the given ViewHolder. Derived classes of RowPresenter overriding onUnbindRowViewHolder must call through the super class's implementation of this method.