Custom listview entry works in JB not in Gingerbread
- by Andy
I have a ListFragment with a custom ArrayAdapter where I am overiding getView() to provide a custom View for the list item.
private class DirListAdaptor extends ArrayAdapter<DirItem> {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View aView = convertView;
if (aView == null) {
…