java.lang.Object | ||
↳ | android.support.v17.leanback.widget.Presenter | |
↳ | android.support.v17.leanback.widget.AbstractDetailsDescriptionPresenter |
An abstract Presenter
for rendering a detailed description of an
item. Typically this Presenter will be used in a DetailsOveriewRowPresenter.
Subclasses will override onBindDescription(AbstractDetailsDescriptionPresenter.ViewHolder, Object)
to implement the data
binding for this Presenter.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
AbstractDetailsDescriptionPresenter.ViewHolder |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Binds a
View to an item. | |||||||||||
Creates a new
View . | |||||||||||
Unbinds a
View from an item. |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Binds the data from the item referenced in the DetailsOverviewRow to the
ViewHolder.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.support.v17.leanback.widget.Presenter
| |||||||||||
From class
java.lang.Object
|
Binds a View
to an item.
Creates a new View
.
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.
Binds the data from the item referenced in the DetailsOverviewRow to the ViewHolder.
vh | The ViewHolder for this details description view. |
---|---|
item | The item from the DetailsOverviewRow being presented. |