Issue 46: slow implementation of getView in GenericAdapter.java
Status:  Fixed
Owner:
Closed:  Mar 2011
Reported by kraus.mi...@googlemail.com, Mar 21, 2011
Every time the getView() method is called, you inflate the layout instead of reusing the convertView if not null. 

See http://developer.android.com/videos/index.html#v=wDBM6wVEO70 at 07:59
Mar 21, 2011
Project Member #1 SakirS...@gmail.com
Thank you for this hint. I have to check if it is possible. Because we need different view objects for each list item. Using the same view object for each item could lead in a problem when changing an object in the view group.

We would have duplicated entry in the listView. 
Owner: SakirS...@gmail.com
Mar 21, 2011
Project Member #2 SakirS...@gmail.com
Fixed but you have to inflate for each new item in a list view a layout.
The fix is only useful to prevent element which are already create to be get recreated. 
Status: Fixed