In getView()
of CursorAdapter
, there's a parameter position
so I can do a checking for that position
, how can I do the same on bindView()
it has no position
parameter in BindView
.
Currently I'm overriding newView()
, bindView()
and getView()
which I read and heard is bad, either override getView()
OR newView()
and getView()
.
Thanks.
getView
or (newView
andbindView
)". There is a default implementation ofgetView
, that callsnewView
if there isn't a view yet, andbindView
if the view is being recycled. – Coxa