I implemented a Section List View following instruction from https://nodeload.github.com/necronet/section-list/zip/master.
Everything working fine, but just out of curiosity, I want to know how Android OS give me correct convertView in the getView function of the Adapter (code below). There are two types of views (two different layout files), one SectionView and ItemView. Imagine a situation, when a fist section and an item are scrolled out of the screen, so there are two views that are in the View Recycler. Then a new view is about to be scrolled in from the bottom. In the getView function, I have to check the position, by the function isSection, to determine what view should I give at that position. The amazing thing is that Android OS (or whatever underlying) always give me the correct convertView (among the two types of views in the Recycler) to recycle, how does it know before I even check? Thanks.
public View getView(final int position, final View convertView,
final ViewGroup parent) {
if (isSection(position)) {
return getSectionView(convertView, sectionPositions.get(position));
}
return getItemView(getLinkedPosition(position), convertView,
parent);
}

rand()>0.5and then based on that call one of thegetView()methods, you're potentially passing off the wrong recycled view. Since ahead of time, the "proper"convertViewwas chosen, you break the adapter. – A--C Jan 21 at 3:08