Where is the source code that manages View re-use in Android? I can think of three distinct parts to this process, but there may be more:
- The logic that determines if a
Viewis eligible for re-use - The code that manages pools of
Views that can be re-used - The code that removes a re-usable
Viewfrom the pool and resets its property values to represent a logically differentView
EDIT: The blog post Developing applications for Android – gotchas and quirks gives the following example:
public class PencilWise extends ListActivity {
View activeElement;
// ...
@Override
public void onCreate ( Bundle savedInstanceState ) {
// ...
this.getListView( ).setOnItemClickListener ( new OnItemClickListener ( ) {
public void onItemClick ( AdapterView<?> parent, View view, int position, long id ) {
MyActivity.this.activeElement = view;
MyActivity.this.showDialog ( DIALOG_ANSWER );
}
} );
}
}
The
showDialogmethod will display the answer dialog, which needs to know what question the user has opened. The problem is that by the time the dialog opens, the view passed toonItemClickmight have been reused, and soactiveElementwould no longer point to the element the user clicked to open the dialog in the first place!
Adapterimplementations to reuse a list item view by checking if theconvertViewparameter togetViewis non-null. I am talking about the view re-use that is built-in somehow. – Daniel Trebbien Jan 31 '11 at 16:49