ExpandableListAdapter 是否支持 BaseAdapter 覆盖 getItemViewType 和 getViewTypeCount 的任何功能,我可以在其中创建各种视图类型
getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
?
谢谢
ExpandableListAdapter 是否支持 BaseAdapter 覆盖 getItemViewType 和 getViewTypeCount 的任何功能,我可以在其中创建各种视图类型
getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
?
谢谢
ExpandableListAdapter 没有,但它是 BaseExpandableListAdapter 的子类。因此,间接地,其他子类 CursorTreeAdapter、ResourceCursorTreeAdapter、SimpleCursorTreeAdapter 和 SimpleExpandableListAdapter 也是如此。
这些方法是:
public int getChildType(final int groupPosition, final int childPosition)
public int getChildTypeCount()