Most visited

Recently visited

ListRow

public class ListRow
extends Row

java.lang.Object
   ↳ android.support.v17.leanback.widget.Row
     ↳ android.support.v17.leanback.widget.ListRow


A Row composed of a optional HeaderItem, and an ObjectAdapter describing the items in the list.

Summary

Public constructors

ListRow(HeaderItem header, ObjectAdapter adapter)
ListRow(long id, HeaderItem header, ObjectAdapter adapter)
ListRow(ObjectAdapter adapter)

Public methods

final ObjectAdapter getAdapter()

Returns the ObjectAdapter that represents a list of objects.

CharSequence getContentDescription()

Returns content description for the ListRow.

void setContentDescription(CharSequence contentDescription)

Explicitly set content description for the ListRow, getContentDescription() will ignore values from HeaderItem.

Inherited methods

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

Public constructors

ListRow

ListRow (HeaderItem header, 
                ObjectAdapter adapter)

Parameters
header HeaderItem
adapter ObjectAdapter

ListRow

ListRow (long id, 
                HeaderItem header, 
                ObjectAdapter adapter)

Parameters
id long
header HeaderItem
adapter ObjectAdapter

ListRow

ListRow (ObjectAdapter adapter)

Parameters
adapter ObjectAdapter

Public methods

getAdapter

ObjectAdapter getAdapter ()

Returns the ObjectAdapter that represents a list of objects.

Returns
ObjectAdapter

getContentDescription

CharSequence getContentDescription ()

Returns content description for the ListRow. By default it returns getContentDescription() or getName(), unless setContentDescription(CharSequence) was explicitly called.

Returns
CharSequence Content description for the ListRow.

setContentDescription

void setContentDescription (CharSequence contentDescription)

Explicitly set content description for the ListRow, getContentDescription() will ignore values from HeaderItem.

Parameters
contentDescription CharSequence: Content description sets on the ListRow.

Hooray!