List Vİew reusing view when ... I dont want it to..
,Handling ListView Recycle on Android
just adding following codes to your adapter so get rid of the damn it :-)
@Override
public int getItemViewType(int position) {
// Define a way to determine which layout to use, here it's just evens and odds.
return position ;
}
@Override
public int getViewTypeCount() {
return getCount();
}
Hiç yorum yok:
Yorum Gönder