Most visited

Recently visited

SectionRow

public class SectionRow
extends Row

java.lang.Object
    android.support.v17.leanback.widget.Row
      android.support.v17.leanback.widget.SectionRow


用于表示HeadersFragment中的节项。 与普通的Row不同,它不可聚焦。

摘要(Summary)

Public constructors

SectionRow(HeaderItem headerItem)
SectionRow(long id, String name)
SectionRow(String name)

公共方法(Public methods)

final boolean isRenderedAsRowView()

如果此Row可以在可见行视图中呈现,则返回true,否则返回false。

继承方法(Inherited methods)

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

Public constructors

SectionRow

SectionRow (HeaderItem headerItem)

参数(Parameters)
headerItem HeaderItem

SectionRow

SectionRow (long id, 
                String name)

参数(Parameters)
id long
name String

SectionRow

SectionRow (String name)

参数(Parameters)
name String

公共方法(Public methods)

isRenderedAsRowView

boolean isRenderedAsRowView ()

如果此Row可以在可见行视图中呈现,则返回true,否则返回false。 例如ListRowListRowPresenter呈现。 PageRowSectionRowDividerRow呈现为不可见的行的意见。

返回(Returns)
boolean True if this Row can be rendered in a visible row view, false otherwise.

Hooray!