Custom adapter getview is not called
问题 I have a Custom adapter with a ListFragment but the adapters getView() is not getting called at all. This is how the adapter looks like - public class ModuleListItemAdapter extends BaseAdapter { List<ModuleItem> list; Context context; Module mod; public ModuleListItemAdapter() { super(); // TODO Auto-generated constructor stub } public ModuleListItemAdapter(Context context, List<ModuleItem> list, Module mod) { super(); this.list = list; this.context = context; this.mod = mod; // TODO Auto