I was wondering, is there any guideline, on how we choose between ArrayAdapter
and SimpleAdapter
.
For every list item, they will be presented by several TextViews and Views, which is being layout nicely. I realize I can implement both without any problem, by either using ArrayAdapter
or SimpleAdapter
.
Is there any guideline, on how we choose among them? My guess is
ArrayAdapter
enables us to add in new item dynamically, even after the list is being shown during that time. Note that,ArrayAdapter
is having methodadd
.SimpleAdapter
is used for case, once the list is being shown, there are no more new item can be added.
Is this the guideline we should follow?