Most visited

Recently visited

ControlButtonPresenterSelector

public class ControlButtonPresenterSelector
extends PresenterSelector

java.lang.Object
   ↳ android.support.v17.leanback.widget.PresenterSelector
     ↳ android.support.v17.leanback.widget.ControlButtonPresenterSelector


Displays primary and secondary controls for a PlaybackControlsRow. Binds to items of type Action.

Summary

Public constructors

ControlButtonPresenterSelector()

Public methods

Presenter getPresenter(Object item)

Always returns the presenter for primary controls.

Presenter[] getPresenters()

Returns an array of all possible presenters.

Presenter getPrimaryPresenter()

Returns the presenter for primary controls.

Presenter getSecondaryPresenter()

Returns the presenter for secondary controls.

Inherited methods

From class android.support.v17.leanback.widget.PresenterSelector
From class java.lang.Object

Public constructors

ControlButtonPresenterSelector

ControlButtonPresenterSelector ()

Public methods

getPresenter

Presenter getPresenter (Object item)

Always returns the presenter for primary controls.

Parameters
item Object
Returns
Presenter

getPresenters

Presenter[] getPresenters ()

Returns an array of all possible presenters. The returned array should not be modified.

Returns
Presenter[]

getPrimaryPresenter

Presenter getPrimaryPresenter ()

Returns the presenter for primary controls.

Returns
Presenter

getSecondaryPresenter

Presenter getSecondaryPresenter ()

Returns the presenter for secondary controls.

Returns
Presenter

Hooray!