SectionRow
public
class
SectionRow
extends Row
Used to represent section item in HeadersFragment. Unlike a normal Row, it's not focusable.
Summary
Public methods |
final
boolean
|
isRenderedAsRowView()
Returns true if this Row can be rendered in a visible row view, false otherwise.
|
Inherited methods |
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public constructors
public SectionRow (HeaderItem headerItem)
Parameters |
headerItem |
HeaderItem |
SectionRow
public SectionRow (long id,
String name)
Parameters |
id |
long |
name |
String |
SectionRow
public SectionRow (String name)
Public methods
isRenderedAsRowView
public final boolean isRenderedAsRowView ()
Returns true if this Row can be rendered in a visible row view, false otherwise. For example
ListRow
is rendered by ListRowPresenter
. PageRow
,
SectionRow
, DividerRow
are rendered as invisible row views.
Returns |
boolean |
True if this Row can be rendered in a visible row view, false otherwise.
|